import { type Tree, type ProjectConfiguration } from '@nx/devkit';
import { type Schema } from '../schema';
export interface NormalizedOptions extends Schema {
    entry: string;
    target: 'node' | 'web' | 'web-worker';
    devServerPort: number;
    tsConfig: string;
    projectRoot: string;
}
export declare function normalizeOptions(tree: Tree, schema: Schema, project: ProjectConfiguration): Promise<NormalizedOptions>;
