export interface SafeFormatOptions {
format: string;
includeSeconds?: boolean;
addSuffix?: boolean;
}
export declare function safeFormat(date: Date | string | number | null | undefined, options: SafeFormatOptions): {
dateObj: any;
formatted: any;
relative: any;
};