import type { FeishuReceiveIdType } from '../feishu/client.js'; import type { InboxItem } from '../../shared/inbox.js'; export type ResolvedChatTarget = { platform: 'slack'; } | { displayName?: string; platform: 'feishu'; receiveId: string; receiveIdType: FeishuReceiveIdType; surfaceKind?: string; }; export declare function resolveChatTarget(channel: string | undefined, item?: InboxItem): ResolvedChatTarget; //# sourceMappingURL=chat-target-resolver.d.ts.map