export type State = 'running' | 'exited' | 'unknown'; export interface Publisher { URL: string; TargetPort: number; PublishedPort: number; Protocol: 'tcp' | 'udp'; } export interface Container { ID: string; Name: string; Command: string; Project: string | undefined; Service: string; State: State; Health: string; ExitCode: number; Publishers: Publisher[] | null; } export declare function listContainers(projectName: string, pathToCompose: string): Promise; export declare function containerExists(projectName: string, pathToCompose: string, serviceName: string): Promise; //# sourceMappingURL=list-containers.d.ts.map