import React from 'react'; import { CreateEventMap, CreateUIAnalyticsEvent } from "./types.js"; export interface WithAnalyticsEventsProps { /** * You should not be accessing this prop under any circumstances. * It is provided by `@uidu/analytics` and integrated in the component */ createAnalyticsEvent?: CreateUIAnalyticsEvent; ref?: React.Ref; } declare const withAnalyticsEvents: (createEventMap?: CreateEventMap) => (WrappedComponent: React.JSXElementConstructor & Component) => React.ForwardRefExoticComponent>> & React.RefAttributes>; export default withAnalyticsEvents;