import React, { PropsWithChildren } from 'react'; import { ITraceContext } from './Trace.js'; declare type TraceEventProps = { events: string[]; name: string; properties?: Record; shouldLogImpression?: boolean; } & ITraceContext; /** * Analytics instrumentation component that wraps event callbacks with logging logic. * * @example * * * */ export declare const TraceEvent: React.MemoExoticComponent<(props: PropsWithChildren) => JSX.Element>; export {}; //# sourceMappingURL=TraceEvent.d.ts.map