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