export declare type Template = (data: T) => string; /** * Stringify a template into a function. */ export declare function compile(value: string, displayName?: string): string; /** * Fast and simple string templates. */ export declare function template(value: string, displayName?: string): Template;