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 CreateMachinesJoinTokenResponse = { 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 CreateMachinesJoinTokenResponse$inboundSchema: z.ZodType; export declare function createMachinesJoinTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createmachinesjointokenresponse.d.ts.map