export declare class Templify {
    private template;
    private pipes;
    constructor(template: string);
    addPipe(name: string, callback: (value: any, arg?: string) => any): void;
    simplify(template?: string): string;
    render(data: any, template?: string): string;
    private getPropertyValue;
    private applyPipe;
}
