export declare const dockerCommand: (command: string, options?: IOptions) => Promise; export declare class Docker { private options; constructor(options?: IOptions); command(command: string, callback?: (err: any, data: any) => void): Promise; } export interface IOptions { machineName?: string; currentWorkingDirectory?: string; echo?: boolean; } export declare class Options implements IOptions { machineName?: string | undefined; currentWorkingDirectory?: string | undefined; echo: boolean; constructor(machineName?: string | undefined, currentWorkingDirectory?: string | undefined, echo?: boolean); }