import { Rule } from "@angular-devkit/schematics"; /** Adds a template to the tree, merging in the given object */ export declare function MergeTemplateSchematicFactory(options: MergeTemplateOptions): Rule; /** Options for merging in a template */ export interface MergeTemplateOptions { /** Path to the template, relative to the templates folder */ template: string; /** Path, within the tree, to save the merged template to */ path: string; /** Data to merge into the template (optional) */ data?: any; }