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