Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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;