type FormatFunctionArgs = [number | string, ...Array<number | string>];
type FormatFunction = (...args: FormatFunctionArgs) => number | string;
export type Format = string | FormatFunction;
export declare const useFormat: (format: Format) => (args_0: string | number, ...args: (string | number)[]) => string | number;
export {};
//# sourceMappingURL=format.d.ts.map