interface ProcessOptions {
cwd?: string;
env?: {
[name: string]: string;
};
}
export interface ExecResult {
stdout: string;
stderr: string;
}
export declare function execute(command: string, args: string[], options?: ProcessOptions): Promise<ExecResult>;
export {};