import { ApiV3 } from '../lib/ApiV3'; import { ObjectPayload, ObjectResponse, PayloadOptions } from '../Types'; /** * Send an object or a batch of objects to ODP * @param apiV3 the v3 API instance to use * @param type the object type, e.g. 'products' * @param payload an ODP object payload or an array of object 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 object(apiV3: ApiV3.API, type: string, payload: ObjectPayload | ObjectPayload[], opts?: PayloadOptions): Promise>; //# sourceMappingURL=object.d.ts.map