declare type CalendarType = { today: string; view: Record; month: { short: Record; long: Record; }; week: { short: Record; long: Record; }; }; export interface Locale { locale: string; Calendar: CalendarType; DatePicker: { Calendar: CalendarType; [key: string]: any; }; Drawer: Record; Empty: Record; Modal: Record; Pagination: Record; Popconfirm: Record; Table: Record; TimePicker: Record; Upload: Record; Progress: Record; Typography: Record; Transfer: Record; ImagePreview: Record; } export {};