export interface DatePreset { label: string; getValue: () => { start: Date; end: Date; }; } export declare const DATE_PRESETS: Record; export declare function getPresetValue(presetKey: string): { start: Date; end: Date; } | null;