export type PipeFunction = (value: any) => any; export type StrictMode = boolean; interface MustacheOptions { strict?: StrictMode; } export declare function parseTemplate(template: string, options?: MustacheOptions): (data: any, component?: any) => string; export declare function parse(template: string, data: any, component?: any, options?: MustacheOptions): string; export {};