export declare type DynamicDateType = 'day' | 'month' | 'year' | 'week'; export interface DynamicData { text: string; name: string; dateType: DynamicDateType; period: 'previou' | 'present' | 'future'; count?: number | null; isFirstDay?: boolean; isLastDay?: boolean; }