import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ProvisionManagerGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ProvisionManagerRequest = { /** * Unique identifier for a manager. */ id: string; }; /** * Manager provisioning enqueued successfully. */ export type ProvisionManagerResponse = { message: string; }; /** @internal */ export type ProvisionManagerRequest$Outbound = { id: string; }; /** @internal */ export declare const ProvisionManagerRequest$outboundSchema: z.ZodType; export declare function provisionManagerRequestToJSON(provisionManagerRequest: ProvisionManagerRequest): string; /** @internal */ export declare const ProvisionManagerResponse$inboundSchema: z.ZodType; export declare function provisionManagerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=provisionmanager.d.ts.map