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