type FormatDateOptions = { month?: '2-digit' | 'long' | 'short' | 'narrow'; day?: '2-digit' | 'numeric'; year?: 'numeric' | '2-digit'; }; export declare function formatDate(date: number, optionsOverride?: FormatDateOptions): string; export {};