export declare type ProcessResults = {
    exitCode: number;
    stdout: string;
    stderr: string;
};
export declare function typecheckInAnotherProcess(cwd: string, files: string[]): Promise<ProcessResults>;
