import type { CalendarMode } from '../Calendar/Calendar.svelte'; type $$ComponentProps = { mode?: CalendarMode; months?: 1 | 2; variant?: 'field' | 'split'; label?: string; closeOnSelect?: boolean; placement?: 'auto' | 'bottom' | 'bottom-start' | 'bottom-end' | 'top' | 'top-start' | 'top-end'; }; declare const DatePickerStory: import("svelte").Component<$$ComponentProps, {}, "">; type DatePickerStory = ReturnType; export default DatePickerStory;