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