import { UpgradeNativeConfigureSchema } from '../schema';
export interface NormalizedSchema {
    name: string;
    displayName: string;
    className: string;
    lowerCaseName: string;
    entryFile: string;
    entryFileIos: string;
    e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none';
    offsetFromRoot: string;
}
export declare function normalizeOptions(options: UpgradeNativeConfigureSchema, appProjectRoot: string): NormalizedSchema;
