/// export interface IDockerComposeOptions { cwd?: string; config?: string | string[]; log?: boolean; composeOptions?: string[] | (string | string[])[]; commandOptions?: string[] | (string | string[])[]; env?: NodeJS.ProcessEnv; } export interface IDockerComposeLogOptions extends IDockerComposeOptions { follow?: boolean; } export interface IDockerComposeBuildOptions extends IDockerComposeOptions { parallel?: boolean; } export interface IDockerComposePushOptions extends IDockerComposeOptions { ignorePushFailures?: boolean; } export interface IDockerComposeResult { exitCode: number | null; out: string; err: string; } export declare const upAll: (options?: IDockerComposeOptions | undefined) => Promise; export declare const upMany: (services: string[], options?: IDockerComposeOptions | undefined) => Promise; export declare const upOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; export declare const down: (options?: IDockerComposeOptions | undefined) => Promise; export declare const stop: (options?: IDockerComposeOptions | undefined) => Promise; export declare const stopOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; export declare const kill: (options?: IDockerComposeOptions | undefined) => Promise; export declare const rm: (options?: IDockerComposeOptions | undefined, ...services: string[]) => Promise; export declare const exec: (container: string, command: string | string[], options?: IDockerComposeOptions | undefined) => Promise; export declare const run: (container: string, command: string | string[], options?: IDockerComposeOptions | undefined) => Promise; export declare const buildAll: (options?: IDockerComposeBuildOptions) => Promise; export declare const buildMany: (services: string[], options?: IDockerComposeBuildOptions) => Promise; export declare const buildOne: (service: string, options?: IDockerComposeBuildOptions | undefined) => Promise; export declare const pullAll: (options?: IDockerComposeOptions) => Promise; export declare const pullMany: (services: string[], options?: IDockerComposeOptions) => Promise; export declare const pullOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; export declare const config: (options?: IDockerComposeOptions | undefined) => Promise; export declare const configServices: (options?: IDockerComposeOptions | undefined) => Promise; export declare const configVolumes: (options?: IDockerComposeOptions | undefined) => Promise; export declare const ps: (options?: IDockerComposeOptions | undefined) => Promise; export declare const push: (options?: IDockerComposePushOptions) => Promise; export declare const restartAll: (options?: IDockerComposeOptions | undefined) => Promise; export declare const restartMany: (services: string[], options?: IDockerComposeOptions | undefined) => Promise; export declare const restartOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; export declare const logs: (services: string | string[], options?: IDockerComposeLogOptions) => Promise; export declare const port: (service: string, containerPort: string | number, options?: IDockerComposeOptions | undefined) => Promise; export declare const version: (options?: IDockerComposeOptions | undefined) => Promise;