declare namespace _default { export { numberFormat as number }; export let date: (datum?: any, dateOpts?: any) => any; export let time: (datum?: any, dateOpts?: any) => any; export let datetime: (datum?: any, dateOpts?: any) => any; export { linkFormat as link }; export { mailFormat as mail }; export { keepLineBreaks }; export { preformatted as preformated }; export { preformatted }; export { prettyJson }; export { percent }; } declare function numberFormat(val: any): any; declare function linkFormat(val: any): { html: string; }; declare function mailFormat(val: any): { html: string; }; declare function keepLineBreaks(val: any): { html: any; }; declare function preformatted(val: any): { html: string; }; declare function prettyJson(val: any): string | { html: string; }; declare function percent(val: any): string; export { _default as default };