///
import { run } from './run';
import { runForegroundSync } from './run-foreground-sync';
import { runStreaming } from './run-streaming';
import { Cmd } from '../types';
export declare function SpawnerBase(translate: (cmd: Cmd) => Cmd): {
run(cmd: Cmd): Promise;
runForeground(cmd: Cmd): Promise;
runForegroundSync(cmd: Cmd): void;
runStreaming(cmd: Cmd): Promise;
};
export declare const spawnerBase: {
run: typeof run;
runForegroundSync: typeof runForegroundSync;
runStreaming: typeof runStreaming;
};
//# sourceMappingURL=index.d.ts.map