import type { BotConfig } from '../bot-registry.js'; export declare const FEED_GROUP_SCOPES: readonly ["im:feed_group_v1:read", "im:feed_group_v1:write"]; export interface FeedGroup { groupId: string; name: string; type: string; } export declare class FeedGroupApiError extends Error { readonly code: string; readonly status: number; constructor(message: string, code: string, status?: number); } /** List all live native Feishu/Lark conversation labels for the authorized user. */ export declare function listFeedGroups(bot: Pick, fetchImpl?: typeof fetch): Promise; export declare function createFeedGroup(bot: Pick, name: string, fetchImpl?: typeof fetch): Promise; export declare function addChatToFeedGroup(bot: Pick, feedGroupId: string, chatId: string, fetchImpl?: typeof fetch): Promise; //# sourceMappingURL=feed-groups.d.ts.map