import type { Core } from '@strapi/types'; export interface Payload { eventProperties?: Record; userProperties?: Record; groupProperties?: Record; } export type Sender = (event: string, payload?: Payload, opts?: Record) => Promise; /** * Create a send function for event with all the necessary metadata */ declare const _default: (strapi: Core.Strapi) => Sender; export default _default; //# sourceMappingURL=sender.d.ts.map