export interface HumanChannelStatus { readonly id: string; readonly kind: string; readonly text: string; } export interface HumanChannelSection { readonly title: "channels" | "operator"; readonly lines: readonly string[]; } /** * Keep transport ids stable in config/JSON while giving humans the product * name and purpose they actually interact with. */ export declare function formatHumanChannelSections(entries: readonly HumanChannelStatus[]): readonly HumanChannelSection[]; //# sourceMappingURL=channel-status-display.d.ts.map