5 lines
252 B
TypeScript
5 lines
252 B
TypeScript
import type { RangeCalendarCellProps } from "../types.js";
|
|
declare const RangeCalendarCell: import("svelte").Component<RangeCalendarCellProps, {}, "ref">;
|
|
type RangeCalendarCell = ReturnType<typeof RangeCalendarCell>;
|
|
export default RangeCalendarCell;
|