export interface AclData { [key: string]: { canAccess: string[]; canEdit: string[]; }; } export interface QueryAclResponse { data: T; } export declare function queryAcl(roomId: string, key?: string, path?: string, botUrl?: string): Promise>;