export interface PickGroupChatParams { title: string; multiple?: boolean; max?: number; pickedCids?: string[]; limitTips: string; } export interface PickGroupChatResults { conversations: { cid: string; title: string; }[]; } declare function pickGroupChat(params: PickGroupChatParams): Promise; declare namespace pickGroupChat { var version: { pc: string; }; } export default pickGroupChat;