import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { SendBiEventOptions } from './index.typings.js'; export { EventName, EventNameWithLiterals, SendBIEventRequest, SendBIEventResponse } from './index.typings.js'; declare function sendBiEvent$1(httpClient: HttpClient): SendBiEventSignature; interface SendBiEventSignature { /** * Submit a BI event to Wix. */ (options?: SendBiEventOptions): Promise; } declare const sendBiEvent: MaybeContext & typeof sendBiEvent$1>; export { SendBiEventOptions, sendBiEvent };