import type { Tree } from '@angular-devkit/schematics'; import type { NfSchematicSchema } from '../schema.js'; export type NormalizedOptions = { polyfills: string; projectName: string; projectRoot: string; projectSourceRoot: string; manifestPath: string; manifestRelPath: string; projectConfig: any; main: string; port: number; }; export type PackageJson = { dependencies: Record; scripts: Record; }; export declare function getWorkspaceFileName(tree: Tree): string; export declare function normalizeOptions(options: NfSchematicSchema, workspace: any, tree: Tree): NormalizedOptions; export declare function isSsrProject(normalized: NormalizedOptions): boolean; export declare function getSsrFilePath(normalized: NormalizedOptions): string; //# sourceMappingURL=normalize-options.d.ts.map