import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Schema {
    projectName: string;
    projectRoot: string;
    projectDirectory: string;
    parsedTags: string[];
    styledModule: null | string;
}
export declare function normalizeOptions(host: Tree, options: Schema): NormalizedSchema;
