export default Calendar; type Calendar = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** A calendar (date picker) widget. */ declare const Calendar: import("svelte").Component<{ /** * Date. */ value?: string | undefined; } & Record, {}, "value">; type Props = { /** * Date. */ value?: string | undefined; };