export interface ExecOptions {
    linkStdout?: boolean;
}
export interface ExecOut {
    stdout: string;
    stderr: string;
}
export declare function Exec(command: string, options?: ExecOptions): Promise<ExecOut>;
