import { Tree } from '@angular-devkit/schematics'; import { TranslationFileTypes } from '../ng-add/schema'; export declare function checkIfTranslationFilesExist(path: string, langs: string[], extension: string, skipThrow?: boolean): boolean; export declare function createTranslateFilesFromOptions(host: Tree, options: { translateType?: TranslationFileTypes; langs: string[]; }, translationFilePath: any): import("@angular-devkit/schematics").Source;