import type { Config } from '../../config/schema.js'; /** * Map a session key to outbound channel routing (heartbeat/cron/virtual keys included). */ export declare function parseOutboundSessionKey(sessionKey: string, config: Config | undefined): { channel: string; chatId: string; };