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