import type { KlawConfig } from "../../config/types.klaw.js"; import { type DeliverableMessageChannel } from "../../utils/message-channel.js"; export type MessageChannelId = DeliverableMessageChannel; export type MessageChannelSelectionSource = "explicit" | "tool-context-fallback" | "single-configured"; export declare function listConfiguredMessageChannels(cfg: KlawConfig): Promise; export declare function resolveMessageChannelSelection(params: { cfg: KlawConfig; channel?: string | null; fallbackChannel?: string | null; }): Promise<{ channel: MessageChannelId; configured: MessageChannelId[]; source: MessageChannelSelectionSource; }>; export declare const testing: { resetLoggedChannelSelectionErrors(): void; }; export { testing as __testing };