type BindingRecord = { accountId: string; conversationId: string; parentConversationId?: string; targetSessionKey: string; boundAt: number; lastActivityAt: number; metadata?: Record; }; export declare function bindFeishuConversation(params: { accountId: string; conversationId: string; parentConversationId?: string; targetSessionKey: string; metadata?: Record; }): BindingRecord; export declare function listBindingsBySessionKey(accountId: string, targetSessionKey: string): BindingRecord[]; export declare function unbindBySessionKey(accountId: string, targetSessionKey: string): BindingRecord[]; export {};