export declare function composeDown(projectName: string, pathToCompose: string, { env }: { env?: Record; }): Promise; export declare function composeKill(projectName: string, pathToCompose: string, { env }: { env?: Record; }): Promise; export declare function cleanupVolumes(projectName: string, pathToCompose: string, { env }: { env?: Record; }): Promise; export declare function startService(projectName: string, pathToCompose: string, serviceName: string): Promise; export declare function stopService(projectName: string, pathToCompose: string, serviceName: string): Promise; export declare function pauseService(projectName: string, pathToCompose: string, serviceName: string): Promise; export declare function unpauseService(projectName: string, pathToCompose: string, serviceName: string): Promise; export declare function runService(projectName: string, pathToCompose: string, env: Record, serviceName: string, commandWithArgs: string[]): Promise>; export declare function execInService(projectName: string, pathToCompose: string, env: Record, serviceName: string, commandWithArgs: string[]): Promise>; export interface ExitOptions { anyExitCode?: boolean; timeout?: number; } export declare function waitForServiceToExit(projectName: string, pathToCompose: string, serviceName: string, { anyExitCode, timeout }?: ExitOptions): Promise; //# sourceMappingURL=container-lifecycle.d.ts.map