import { ICreateWorkspace, IUpdateWorkspace, IWorkspace, IWorkspaceQuery } from './workspace.dto'; import { AxiosInstance } from 'axios'; declare const workspacesApi: (axios: AxiosInstance) => { list(query?: IWorkspaceQuery): Promise>; create(data: ICreateWorkspace): Promise>; retrieve(id: string): Promise>; update(id: string, data: IUpdateWorkspace): Promise>; delete(id: string): Promise>; }; export default workspacesApi;