/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Rule } from '@angular-devkit/schematics';
export { buildDefaultPath, getWorkspace } from '@schematics/angular/utility/workspace';
export { findModuleFromOptions } from '@schematics/angular/utility/find-module';
export { parseName } from '@schematics/angular/utility/parse-name';
export { validateHtmlSelector } from '@schematics/angular/utility/validation';
export { Style } from '@schematics/angular/component/schema';
export interface DeclarationToNgModuleOptions {
    module?: string;
    path?: string;
    name: string;
    flat?: boolean;
    export?: boolean;
    type: string;
    skipImport?: boolean;
    standalone?: boolean;
}
export declare const strings: any;
export declare function buildSelector(options: {
    name: string;
    prefix?: string;
}, projectPrefix: string): any;
export declare const addDeclarationToNgModule: {
    (options: DeclarationToNgModuleOptions): Rule;
};
