/** * Find the compose file in the current directory */ export declare function findComposeFile(): string | null; /** * Find the override file for a given compose file */ export declare function findOverrideFile(composeFile: string): string | null; /** * Parse compose file and extract service names */ export declare function parseComposeFile(filePath: string): string[];