import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { EntityChangeBehaviour } from "./entity-change-behaviour.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionChangeEntityType } from "./subscription-change-entity-type.js"; export type EntityChangeResult = { behaviour?: EntityChangeBehaviour | undefined; entityId?: string | undefined; entityType?: SubscriptionChangeEntityType | undefined; referenceId?: string | undefined; }; /** @internal */ export declare const EntityChangeResult$inboundSchema: z.ZodMiniType; export declare function entityChangeResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=entity-change-result.d.ts.map