import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { MachinesJoinTokenSummary } from "./machinesjointokensummary.js"; export type RotateMachinesJoinTokenResponse = { joinToken: string; controlPlaneUrl: string; clusterId: string; token: MachinesJoinTokenSummary; /** * Deploy CLI install script URL, or null when no ready CLI package exists. */ cliInstallScriptUrl: string | null; /** * CLI command name to use in join instructions. */ cliCommandName: string | null; }; /** @internal */ export declare const RotateMachinesJoinTokenResponse$inboundSchema: z.ZodType; export declare function rotateMachinesJoinTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rotatemachinesjointokenresponse.d.ts.map