import { QelosSDKOptions } from '../types'; import BaseSDK from '../base-sdk'; import { IWorkspace } from '../workspaces'; export default class QlAdminWorkspaces extends BaseSDK { private options; private relativePath; constructor(options: QelosSDKOptions); getList(filters?: { 'members.user'?: string; labels?: string[]; name?: string; q?: string; _id?: string[]; select?: string; }): Promise; getEncryptedData(workspaceId: string, encryptedId?: string): Promise; setEncryptedData(workspaceId: string, encryptedId: string, data: Z): Promise; }