import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Omit<Schema, 'name' | 'useTsSolution'> {
    className: string;
    simpleName: string;
    projectName: string;
    appProjectRoot: string;
    importPath: string;
    lowerCaseName: string;
    parsedTags: string[];
    rootProject: boolean;
    e2eProjectName: string;
    e2eProjectRoot: string;
    isTsSolutionSetup: boolean;
}
export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>;
