import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PublishSummaryDto } from "./publishsummarydto.js"; import { SyncResultDto } from "./syncresultdto.js"; export type PublishEnvironmentResponseDto = { /** * Sync results by resource type */ results: Array; /** * Summary of the sync operation */ summary: PublishSummaryDto; }; /** @internal */ export declare const PublishEnvironmentResponseDto$inboundSchema: z.ZodType; export declare function publishEnvironmentResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=publishenvironmentresponsedto.d.ts.map