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