import BaseClient from '../../base'; /** * For usage, see {@link GroupsApi.createOpenFriendList} */ export interface CreateOpenFriendListReq { groupName: string; groupMemberList: string[]; } /** * For usage, see {@link GroupsApi.createOpenFriendList} */ export interface CreateOpenFriendListApi { (data: CreateOpenFriendListReq): Promise; } declare const createOpenFriendListBuilder: (applozicClient: BaseClient) => CreateOpenFriendListApi; export default createOpenFriendListBuilder;