import * as z from "zod/v3"; import { BridgeConfigurationDto, BridgeConfigurationDto$Outbound } from "./bridgeconfigurationdto.js"; import { InBoundParseDomainDto, InBoundParseDomainDto$Outbound } from "./inboundparsedomaindto.js"; export type UpdateEnvironmentRequestDto = { name?: string | undefined; identifier?: string | undefined; parentId?: string | undefined; color?: string | undefined; dns?: InBoundParseDomainDto | undefined; bridge?: BridgeConfigurationDto | undefined; }; /** @internal */ export type UpdateEnvironmentRequestDto$Outbound = { name?: string | undefined; identifier?: string | undefined; parentId?: string | undefined; color?: string | undefined; dns?: InBoundParseDomainDto$Outbound | undefined; bridge?: BridgeConfigurationDto$Outbound | undefined; }; /** @internal */ export declare const UpdateEnvironmentRequestDto$outboundSchema: z.ZodType; export declare function updateEnvironmentRequestDtoToJSON(updateEnvironmentRequestDto: UpdateEnvironmentRequestDto): string; //# sourceMappingURL=updateenvironmentrequestdto.d.ts.map