type Process = { env: Env; stdout: Stdout; argv: string[]; exit: (ec: number) => void; }; export type Env = { [key: string]: string | undefined; }; type Stdout = { write: (data: any) => void; }; declare const processShim: Process; export declare const updateProcessEnv: (x: Env) => void; type Window = { [key: string]: any; }; declare const windowShim: Window; export { processShim as process, windowShim as window, }; //# sourceMappingURL=shim.d.ts.map