import type { PersonalSpaceDetailsForCreation } from '../models/PersonalSpaceDetailsForCreation.js'; import type { Space } from '../models/Space.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class AdminSpaceService { /** * Creates personal Space for a User. * Creates a personal space for a user. * * Example request URI: * * `http://example.com/confluence/rest/api/admin/space/personal/morganlee` * @param username the username of the user to create personal space for. * @param requestBody The personal space to be created * @returns Space Returns a full JSON representation of a space. * @throws ApiError */ static createPersonalSpace(username: string, requestBody: PersonalSpaceDetailsForCreation): CancelablePromise; } //# sourceMappingURL=AdminSpaceService.d.ts.map