export type Template = (data: T) => string; /** * Fast and simple string templates. */ export declare function template(value: string): (data: T) => string;