interface DockerConfig { socketPath?: string; } /** * Detects whether Docker or Podman is available and returns appropriate configuration * @param customSocketPath - Optional custom socket path from configuration */ export declare function getDockerConfig(customSocketPath?: string): DockerConfig; /** * Checks if we're using Podman based on the socket path */ export declare function isPodman(config: DockerConfig): boolean; /** * Gets the container runtime command name ('docker' or 'podman') * This should be used when executing shell commands that interact with containers */ export declare function getContainerRuntimeCmd(customSocketPath?: string): string; export {}; //# sourceMappingURL=docker-config.d.ts.map