import { Timestamp } from '@google-cloud/firestore'; export declare abstract class DateHelper { static isValidDate(d: any): boolean; static fromString(str: string | null, def: Date | null): Date | null; static tratarData(data: Date | Timestamp | string, def: Date | null): Date; }