import * as z from "zod/v4"; export type CreateMachinesJoinTokenGlobals = { /** * 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 CreateMachinesJoinTokenRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** @internal */ export type CreateMachinesJoinTokenRequest$Outbound = { id: string; }; /** @internal */ export declare const CreateMachinesJoinTokenRequest$outboundSchema: z.ZodType; export declare function createMachinesJoinTokenRequestToJSON(createMachinesJoinTokenRequest: CreateMachinesJoinTokenRequest): string; //# sourceMappingURL=createmachinesjointoken.d.ts.map