import * as z from "zod/v3"; import { ResourceToPublishDto, ResourceToPublishDto$Outbound } from "./resourcetopublishdto.js"; export type PublishEnvironmentRequestDto = { /** * Source environment ID to sync from. Defaults to the Development environment if not provided. */ sourceEnvironmentId?: string | undefined; /** * Perform a dry run without making actual changes */ dryRun?: boolean | undefined; /** * Array of specific resources to publish. If not provided, all resources will be published. */ resources?: Array | undefined; }; /** @internal */ export type PublishEnvironmentRequestDto$Outbound = { sourceEnvironmentId?: string | undefined; dryRun: boolean; resources?: Array | undefined; }; /** @internal */ export declare const PublishEnvironmentRequestDto$outboundSchema: z.ZodType; export declare function publishEnvironmentRequestDtoToJSON(publishEnvironmentRequestDto: PublishEnvironmentRequestDto): string; //# sourceMappingURL=publishenvironmentrequestdto.d.ts.map