import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Omit<Schema, 'e2eName'> {
    appFileName: string;
    appClassName: string;
    appExpoName: string;
    appRoot: string;
    e2eProjectName: string;
    e2eProjectRoot: string;
    importPath: string;
    isUsingTsSolutionConfig?: boolean;
}
export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>;
