export interface DateFormaterType { fromDate(value: any): string | null | undefined; toDate(value: any): Date | null | undefined; getPlaceHolderDate(): string; } export declare class DateFormaterDefault { static fromDate(value: Date | string | null | undefined): string; static toDate(value: any): Date | null | undefined; static getPlaceHolderDate(): string; } //# sourceMappingURL=dateFormaterDefault.d.ts.map