import { Resource, TemplateClient as ITemplateClient, TemplateSvc } from '../type';
export declare class TemplateClient implements ITemplateClient {
    private templateExecutor;
    constructor(templateExecutor: TemplateSvc);
    executeAsTemplate(resource: Resource, targetPath: string, data: any): Promise<Resource>;
}
