import { DockerCompose } from './dockerCompose'; export declare class Docker { private static _instance?; private readonly docker; readonly compose: DockerCompose; private constructor(); static getInstance(): Docker; containerIsUp(name: string): Promise; listVolumes(nameSelect: string): Promise; removeVolume(name: string): Promise; private assertAvailable; }