declare function render(tpl: any, data: any): { html: string; error: any; }; declare function listVars(tpl: any): unknown[]; export declare const PBEngine: { render: typeof render; listVars: typeof listVars; HELPERS: { money(v: any, ctx: any): string; num(v: any): string; qty(v: any): string; pct(v: any): string; upper(v: any): string; lower(v: any): string; }; }; export {};