export declare function registerFormatter(type: string, formatter: (value: any) => string): void; export declare function unregisterFormatter(type: string): void; export declare function getFormatters(): { [name: string]: (value: any) => string; }; export declare function getFormatter(type: string): (value: any) => string;