export declare const formatDate: (date: Date | string, format?: string) => string; export declare const formatMoney: (money: number, currency?: string | undefined, includeDecimals?: boolean) => string; export declare const formatPercentage: (fraction: number) => string; export declare const formatString: (str: string, ...args: any[]) => string;