import { Tree, Rule } from '@angular-devkit/schematics'; export declare function runSchematic(schematicName: string, options: any, tree: Tree): Promise; export declare function callRule(rule: Rule, tree: Tree): Promise; export interface AppConfig { appName: string; appModule: string; } export interface LibConfig { name: string; module: string; barrel: string; } export declare function getAppConfig(): AppConfig; export declare function getLibConfig(): LibConfig;