import { FC } from 'react'; import { Dayjs } from 'dayjs'; import { ShortcutItem } from '../shared/shortcuts-panel/shortcuts-panel'; export type { ShortcutItem }; export interface DateRangePickerProps { value: [Dayjs | null, Dayjs | null]; onChange: (range: [Dayjs | null, Dayjs | null]) => void; format?: string; placeholder?: string; displayWeekNumber?: boolean; shortcuts?: ShortcutItem[]; defaultDate?: Dayjs; className?: string; } export declare const DateRangePicker: FC;