import { Rule } from '@angular-devkit/schematics';
interface Schema {
    /** Name of the project to target. */
    project: string;
    translationFile: string;
    autoTargetFile?: string;
    targetTranslationPath: string;
    includeContextInTarget: boolean;
    packageScript: boolean;
}
declare function ngAdd(_options: Schema): Rule;
export { ngAdd };
