import type { SKYKOIConfig } from "../../config/config.js"; import { type DeliverableMessageChannel } from "../../utils/message-channel.js"; export type MessageChannelId = DeliverableMessageChannel; export declare function listConfiguredMessageChannels(cfg: SKYKOIConfig): Promise; export declare function resolveMessageChannelSelection(params: { cfg: SKYKOIConfig; channel?: string | null; }): Promise<{ channel: MessageChannelId; configured: MessageChannelId[]; }>;