import { Tree } from '@nx/devkit';
import { DotNetClient } from '@nx-dotnet/dotnet';
import { NxDotnetGeneratorSchema } from './schema';
export declare function normalizeOptions(schema: NxDotnetGeneratorSchema): NxDotnetGeneratorSchema & Required<Pick<NxDotnetGeneratorSchema, 'suffix'>>;
export default function (host: Tree, rawSchema: NxDotnetGeneratorSchema, dotnetClient?: DotNetClient): Promise<void>;
export declare function calculateTestTargetNameAndRoot(pathScheme: 'nx' | 'dotnet', targetProjectName: string, targetProjectRoot: string, testProjectName?: string, suffix?: string): {
    root: string;
    name: string;
};
