import { IPCClient } from '../ipc';
import { EnvironmentEventHandler } from '../jest-environment';
import { BaseRealm } from './BaseRealm';
export declare class ChildProcessRealm extends BaseRealm {
    readonly type: "child_process";
    readonly environmentHandler: EnvironmentEventHandler;
    readonly ipc: IPCClient;
    constructor();
}
