import Formatter from './Formatter';
export declare const formatters: {
    [key: string]: Formatter;
};
export declare function inverseFactory(formatter_id: string): (s: string) => number;
export declare function regexpFactory(formatter_id: string): string;
export declare function buildFormatter(formatter_id: string): Formatter;
export default function factory(formatter_id: string): (value: number) => string;
