import { AxiosInstance } from "axios"; import Base, { MaybeRaw, Options } from "../../../../Base"; import { High5JobInternal } from "./job"; export declare class High5SpaceInternal extends Base { get job(): High5JobInternal; private _job?; constructor(options: Options, axios: AxiosInstance); /** * Deletes all spaces of an organization. * * THIS IS AN INTERNAL ENDPOINT AND CAN ONLY BE USED FROM BACKENDS WITHIN THE HCLOUD DEPLOYMENT * @param orgName Name of the organization */ deleteAllSpacesOfOrganization(orgName: string, raw?: { raw: R; }): Promise>; /** * Removes the user from all spaces of an organization. * * THIS IS AN INTERNAL ENDPOINT AND CAN ONLY BE USED FROM BACKENDS WITHIN THE HCLOUD DEPLOYMENT * @param orgName Name of the organization * @param userId ID of the user */ removeUserFromAllSpacesOfOrganization(orgName: string, userId: string, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }