import Docker from "dockerode"; import { DockerComposeProject } from "../types/docker.js"; export declare class ComposeService { private docker; constructor(dockerInstance?: Docker); up(composePath: string, projectName?: string, services?: string[]): Promise; down(composePath: string, projectName?: string, options?: { removeVolumes?: boolean; removeImages?: boolean; }): Promise; pull(composePath: string, projectName?: string, services?: string[]): Promise; logs(composePath: string, projectName?: string, options?: { services?: string[]; tail?: number; follow?: boolean; timestamps?: boolean; }): Promise; getProjectInfo(composePath: string, projectName?: string): Promise; restart(composePath: string, projectName?: string, services?: string[]): Promise; ps(composePath: string, projectName?: string): Promise; } //# sourceMappingURL=ComposeService.d.ts.map