import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerUpdatedFields } from "./customerupdatedfields.js"; export type CustomerUpdatedMetadata = { customerId: string; customerEmail: string | null; customerName: string | null; customerExternalId: string | null; updatedFields: CustomerUpdatedFields; }; /** @internal */ export declare const CustomerUpdatedMetadata$inboundSchema: z.ZodMiniType; export declare function customerUpdatedMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerupdatedmetadata.d.ts.map