import type { UserSpaceConfiguration } from "../models/UserSpaceConfiguration"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class ConfigService { /** * Get user space configuration * Get information about the user's space, including all of the possible values that can be provided to other endpoints. * @returns UserSpaceConfiguration Success, including all of the options for the user space * @throws ApiError */ static getConfig(): CancelablePromise; }