import type { ProviderService } from "../cli/service-registry.js"; export interface ServiceLabelInfo { service: string; displayName: string; label: string; color: string; description: string; } export declare function collectSpawnLabels(adapters: ProviderService[]): ServiceLabelInfo[]; export declare function renderLabelDocument(labels: ServiceLabelInfo[]): string; export declare function normalizeColor(source: string): string;