/** * Formats the date with the default configuration * @internal */ export declare function formatDateDefault(value: number | Date): string; /** * Formats a given number with default currency configuration * (no currency symbol, but two fraction digits, e.g. 12345.6789 → 12,345.68). * * @param value - The number to be formatted as currency. * @param formatOptions - The format options configured by the consumer. * * @internal */ export declare function formatCurrencyDefault(value: number, formatOptions?: Omit & { locale?: string | string[]; abbreviate?: boolean; }): string;