File size: 456 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ComponentType } from 'react';

interface TrackComponentViewProps {
	eventName: string;
	eventProperties?: Record< string, unknown >;
	statGroup?: string;
	statName?: string;
	recordTracksEvent?: ( eventName: string, eventProperties?: Record< string, unknown > ) => void;
	bumpStat?: ( statGroup: string, statName: string ) => void;
}

declare const TrackComponentView: ComponentType< TrackComponentViewProps >;

export default TrackComponentView;