import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RetrieveCustomerRequest = { /** * The unique identifier of the customer. */ customerId?: string | undefined; /** * The email address of the customer. */ email?: string | undefined; }; /** @internal */ export declare const RetrieveCustomerRequest$inboundSchema: z.ZodType; /** @internal */ export type RetrieveCustomerRequest$Outbound = { customer_id?: string | undefined; email?: string | undefined; }; /** @internal */ export declare const RetrieveCustomerRequest$outboundSchema: z.ZodType; export declare function retrieveCustomerRequestToJSON(retrieveCustomerRequest: RetrieveCustomerRequest): string; export declare function retrieveCustomerRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrievecustomer.d.ts.map