import type { FormatNumberOptions, FormatOptions } from './types'; export declare const formatBytes: (value: number, options?: FormatOptions) => string; export declare const formatDuration: (value: number, options?: FormatOptions) => string; export declare const getNumberUnitRate: (value: number) => number; export declare const formatNumber: (value: number | string, options?: FormatNumberOptions) => string;