import dayjs from "dayjs"; export declare const today: { text: string; symbol: string; date: dayjs.Dayjs[]; }; export declare const yesterday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; export declare const nearly7: { text: string; symbol: string; date: dayjs.Dayjs[]; }; /** 近30天 */ export declare const nearly30: { text: string; symbol: string; date: dayjs.Dayjs[]; }; /** 本月至今 */ export declare const thisMonthToday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; /** 本月 */ export declare const thisMonth: { text: string; symbol: string; date: dayjs.Dayjs[]; }; /** 上月 */ export declare const lastMonth: { text: string; symbol: string; date: dayjs.Dayjs[]; }; export declare const thisYearToday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; /** 完整的日期快捷配置 */ export declare const dateConfig: { today: { text: string; symbol: string; date: dayjs.Dayjs[]; }; yesterday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; nearly7: { text: string; symbol: string; date: dayjs.Dayjs[]; }; nearly30: { text: string; symbol: string; date: dayjs.Dayjs[]; }; thisMonthToday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; thisMonth: { text: string; symbol: string; date: dayjs.Dayjs[]; }; lastMonth: { text: string; symbol: string; date: dayjs.Dayjs[]; }; thisYearToday: { text: string; symbol: string; date: dayjs.Dayjs[]; }; }; export declare const defaultShortType: string[]; export interface shortcutsItem { text: string; value: Date[]; } export declare const getShortcuts: (config: string[]) => shortcutsItem[];