import { AxiosInstance } from "axios"; import Base, { MaybeRaw, Options } from "../../../../Base"; export declare class CosmoSpaceInternal extends Base { constructor(options: Options, axios: AxiosInstance); /** * Deletes all spaces of an organization and the organization itself. * * THIS IS AN INTERNAL ENDPOINT AND CAN ONLY BE USED FROM BACKENDS WITHIN THE HCLOUD DEPLOYMENT * @param orgId ID of the organization */ deleteSpacesOfDeletedOrg(orgId: string, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }