declare type EventProps = { action: string; category: string; label: string; value: number; }; declare const event: (eventProps: EventProps) => Promise; export default event;