import { ApiV3 } from '../lib/ApiV3'; import { CustomerPayload, CustomerResponse, PayloadOptions } from '../Types'; /** * Send a customer or a batch of customers to ODP. * * @param apiV3 the v3 API instance to use * @param payload an ODP customer payload or an array of customer payloads * @param opts a PayloadOptions instance defaults are trimToNull & excludeNulls * @returns the response from the API if successful * @throws {HttpError} if it receives a non-2XX result or if the batch size is > BATCH_LIMIT */ export declare function customer(apiV3: ApiV3.API, payload: CustomerPayload | CustomerPayload[], opts?: PayloadOptions): Promise>; //# sourceMappingURL=customer.d.ts.map