import dayjs from 'dayjs'; export declare function getFormattedDate(date?: string | Date | null, options?: Intl.DateTimeFormatOptions | undefined): string; export declare function getFormattedNumber(number: number, options?: Intl.NumberFormatOptions | undefined): string; export declare function getFormattedPeriod(start: string, end: string | Date): string; export interface StandardInfo { documentId?: string | null; name: string; version: string; } export declare function formatStandardInfo(info: StandardInfo): string; /** wrapper for dayjs format function with default format `MMMM D, YYYY` (ex * "December 31, 2016") */ export declare const DATE_FORMAT_SECONDARY = "MMM D, YYYY"; export declare function formatDate(date: dayjs.ConfigType, format?: string, utc?: boolean): string; declare type FormatNumberParams = { num: number | string | undefined; minimumFractionDigits?: number; maximumFractionDigits?: number; }; export declare function formatNumber({ num, maximumFractionDigits, minimumFractionDigits, }: FormatNumberParams): string; export declare function formatDuration(seconds: number): string; export {};