import dayjs from 'dayjs'; import { PresetType } from './Shortcuts'; export declare const presetValueArr: string[]; export declare const presetDetailMap: { today: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; yesterday: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; last_3_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; last_7_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; last_30_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; last_90_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; last_180_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; tomorrow: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; next_3_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; next_7_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; next_30_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; next_90_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; next_180_days: { getValue: () => dayjs.Dayjs[]; label: (locale?: string) => any; }; }; export declare const defaultPresets: PresetType[];