import React from 'react'; export interface WithContextProps { analyticsContext?: Record; } declare const withAnalyticsContext: (defaultData?: any) => (WrappedComponent: React.ComponentType & Component) => React.ForwardRefExoticComponent> & React.RefAttributes>; export default withAnalyticsContext;