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