import { ApiV3 } from '../lib/ApiV3'; import { EventPayload, EventResponse } from '../Types'; /** * Send an event or a batch of events to ODP * * @param apiV3 the v3 API instance to use * @param payload an ODP event payload or an array of event payloads * @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 event(apiV3: ApiV3.API, payload: EventPayload | EventPayload[]): Promise>; //# sourceMappingURL=event.d.ts.map