import * as z from "zod/v4"; import { ForwardImportRequest, ForwardImportRequest$Outbound } from "./forwardimportrequest.js"; import { PersistImportedDeploymentRequest, PersistImportedDeploymentRequest$Outbound } from "./persistimporteddeploymentrequest.js"; /** * Request schema for importing a deployment from resolved setup infrastructure */ export type ImportDeploymentRequest = PersistImportedDeploymentRequest | ForwardImportRequest; /** @internal */ export type ImportDeploymentRequest$Outbound = PersistImportedDeploymentRequest$Outbound | ForwardImportRequest$Outbound; /** @internal */ export declare const ImportDeploymentRequest$outboundSchema: z.ZodType; export declare function importDeploymentRequestToJSON(importDeploymentRequest: ImportDeploymentRequest): string; //# sourceMappingURL=importdeploymentrequest.d.ts.map