import { FC } from 'react'; import { RouteProps } from 'react-router-dom'; import { TrackConfig } from '../interface'; declare type Props = RouteProps & Partial; declare const TrackRoute: FC; export default TrackRoute;