import React from 'react'; interface StatusDisplay { icon: string; color: string; } export declare const resolveDockerServiceStatus: (status: string) => StatusDisplay; export declare const dockerServiceStatusColor: (status: string) => string; /** Renders Docker service health/state without workflow status semantics. */ export declare const DockerServiceStatusIcon: React.FC<{ status: string; }>; export {};