import { Tree } from '@angular-devkit/schematics'; import * as ts from 'typescript'; import { Controller, Type } from '../models'; export declare function interpolate(text: string, ...params: (string | number | boolean)[]): string; export declare function isNullOrUndefined(value: any): value is null | undefined; export declare function readFileInTree(tree: Tree, filePath: string): ts.SourceFile; export declare function removeDefaultPlaceholders(oldParams: T): T; export declare function sanitizeControllerTypeNames(controllers: Record): Record; export declare function sanitizeTypeNames(types: Record): Record;