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