import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EnvironmentDiffSummaryDto } from "./environmentdiffsummarydto.js"; import { ResourceDiffResultDto } from "./resourcediffresultdto.js"; export type DiffEnvironmentResponseDto = { /** * Source environment ID */ sourceEnvironmentId: string; /** * Target environment ID */ targetEnvironmentId: string; /** * Diff resources by resource type */ resources: Array; /** * Overall summary */ summary: EnvironmentDiffSummaryDto; }; /** @internal */ export declare const DiffEnvironmentResponseDto$inboundSchema: z.ZodType; export declare function diffEnvironmentResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=diffenvironmentresponsedto.d.ts.map