import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Omit<Schema, 'name'> {
    fileName: string;
    projectName: string;
    projectRoot: string;
    importPath: string;
    routePath: string;
    parsedTags: string[];
    isUsingTsSolutionConfig: boolean;
}
export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>;
