export declare function captureConsole<T>(func: () => Promise<T>): Promise<{
    stdout: string;
    stderr: string;
    result: T;
}>;
//# sourceMappingURL=captureConsole.d.ts.map