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