export declare type Locale = 'faIR' | 'enUS'; export interface Dictionary { locale: Locale; entries: { [key: string]: string; }; } export interface McbDateDescriptor { year: number; month: number; day: number; hour?: number; minute?: number; second?: number; } export declare type McbDateFormat = 'YYYY-MM-DD' | 'YYYY-M-D' | 'YYYY/MM/DD' | 'YYYY/M/D' | 'HH:mm' | 'HH:mm:ss'; export declare type McbDateManipulationUnit = 'days' | 'months' | 'years' | 'hours' | 'minutes' | 'seconds'; export declare type McbCalendarType = 'jalali' | 'gregorian'; export interface McbDateParseOptions { } export interface McbDateFormatOptions { }