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