/// <reference types="react" />
import './style.scss';
type singleTimeRecord = {
    status?: string;
    date?: any;
    userName?: string;
    comment?: string;
    isHighlighted?: boolean;
    details?: JSX.Element | string;
};
interface TimeTrackerProps {
    data: singleTimeRecord[];
    className?: string;
    title?: string;
    statusTypes?: {
        [key: string]: string;
    };
}
declare const TimeTracker: ({ data, className, title, statusTypes, }: TimeTrackerProps) => import("react/jsx-runtime").JSX.Element;
export default TimeTracker;
