///
import { CommonSpawnOptions } from 'child_process';
import { AsyncIterableWithReturn } from "./collections";
export interface RunOptions extends CommonSpawnOptions {
command: string[];
}
export declare function run(options: RunOptions): AsyncIterableWithReturn;