import { CustomerAuth } from '@livechat/customer-auth'; import { Store } from './types'; type SendCustomerActionsDependencies = { auth: CustomerAuth; store: Store; }; export type SendCustomerActionsAction = { type: 'click' | 'submit'; timestamp: string; properties: Record; }; export type SendCustomerActionsOptions = { actions: SendCustomerActionsAction[]; }; declare const sendCustomerActions: ({ auth, store }: SendCustomerActionsDependencies, { actions }: SendCustomerActionsOptions) => Promise; export default sendCustomerActions; //# sourceMappingURL=sendCustomerActions.d.ts.map