import type { SchematicOptionObject } from '@o3r/schematics';
export interface NgAddSchematicsSchema extends SchematicOptionObject {
    /** Project name */
    projectName?: string | undefined;
    /** Skip the linter process */
    skipLinter: boolean;
    /** Skip the install process */
    skipInstall: boolean;
    /** Use a pinned version for otter packages */
    exactO3rVersion?: boolean;
}
//# sourceMappingURL=schema.d.ts.map