/** @typedef {typeof __propDef.props} CalendarInputProps */ /** @typedef {typeof __propDef.events} CalendarInputEvents */ /** @typedef {typeof __propDef.slots} CalendarInputSlots */ export default class CalendarInput extends SvelteComponentTyped<{ label?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type CalendarInputProps = typeof __propDef.props; export type CalendarInputEvents = typeof __propDef.events; export type CalendarInputSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};