import type { ExecResult, RawExecOptions } from './types';
export declare function exec(cmd: string, opts: RawExecOptions): Promise<ExecResult>;
export declare const rawExec: (cmd: string, opts: RawExecOptions) => Promise<ExecResult>;
