export type ParsedInputs = 'help' | 'version' | {
    enableAOT: boolean;
    aotCache: string;
    enableHttpCache: boolean;
    enableExperimentalHighResolutionTimeMethods: boolean;
    moduleMode: boolean;
    bundle: boolean;
    enableStackTraces: boolean;
    excludeSources: boolean;
    debugIntermediateFilesDir: string | undefined;
    wasmEngine: string;
    wevalBin: string | undefined;
    input: string;
    output: string;
    env: Record<string, string>;
};
export declare function parseInputs(cliInputs: string[]): Promise<ParsedInputs>;
