import type { ContentBody } from '../models/ContentBody.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class ContentBodyService { /** * Convert body representation * Converts between content body representations. Not all representations can be converted to/from other formats. Supported conversions: * * - `storage -> view,export_view,styled_view,editor` * - `editor -> storage` * - `view -> None` * - `export_view -> None` * - `styled_view -> None` * * Example request URI(s): * * - `http://example.com/confluence/rest/api/contentbody/convert/view` * @param to the representation to convert to. * @param expand A comma separated list of properties to expand on the content. Default value: body.storage,history,space,version,ancestors * @param requestBody the body to convert from * @returns ContentBody returns the converted body * @throws ApiError */ static convert(to: string, expand?: string, requestBody?: ContentBody): CancelablePromise; } //# sourceMappingURL=ContentBodyService.d.ts.map