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