import type { SlashCommand } from '@wrongstack/core/types'; export interface ConnectionsSlashDeps { onPanelOpen?: { current: ((action: string) => boolean) | null; } | undefined; } /** * TUI `/connections` — panel-first. Bare `/connections` (and `open` / `--open`) * opens the interactive service health panel and emits nothing to chat history. */ export declare function createConnectionsSlashCommand(deps: ConnectionsSlashDeps): SlashCommand; //# sourceMappingURL=connections-slash.d.ts.map