import Base, { MaybeRaw } from "../../../Base"; import { User } from "../../../interfaces/idp/user"; export declare class IdpInternal extends Base { /** * Creates an agent user for an organization. * * This is an internal endpoint and requires HCloud admin credentials to use. * * @param orgName Name of the organization * @returns the created user and a pat token */ createAgentUser(orgName: string, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }