import { Rule } from '@angular-devkit/schematics';
export interface Schema {
    project?: string;
    output?: string;
}
/**
 * Angular schematic rule that adds dependencies and configuration to an Angular project.
 * @param {any} _options - The options for the schematic.
 * @returns {Rule} - A rule function that modifies the project tree.
 */
export declare function ngAdd(options: any): Rule;
