type NumberFormat = 'default' | 'currency' | 'percent' | 'bytes' | 'exponantial' | 'float2' | 'duration' | 'normal'; export declare const numeric: (value: string | number, format?: NumberFormat) => string; export {};