import { CONVERSATION_ACCESS } from '../../conversation'; export interface ChannelSearchItem { /** The conversation ID of the channel */ id: string; /** Conversation name */ name: string; /** Number of conversation members */ member_count: number; /** Number of conversation admins */ admin_count: number; /** Conversation access field */ access: CONVERSATION_ACCESS[]; } export interface ChannelSearchResult { page: ChannelSearchItem[]; } //# sourceMappingURL=ChannelSearchResult.d.ts.map