import { AxiosInstance } from 'axios'; import { EnvType } from '../types'; /** * Workspace API HTTP client. Auth (Authorization, x-access-key) must be sent per request * in workspaceApi.service so the correct user's token is used (client is shared across users). */ export declare const workspaceClient: (contentType: string, environment: EnvType) => AxiosInstance;