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