import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { DeploymentMachine } from "./deploymentmachine.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ListDeploymentMachinesResponse = { machines: Array; }; /** @internal */ export declare const ListDeploymentMachinesResponse$inboundSchema: z.ZodType; export declare function listDeploymentMachinesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listdeploymentmachinesresponse.d.ts.map