import { TrackerStyles } from './tracker.css'; import * as React from 'react'; interface TrackerBlockProps extends TrackerStyles { key?: string | number; color?: string; tooltip?: string | React.ReactNode; defaultColor?: string; onClick?: () => void; ariaLabel?: string; disabled?: boolean; } interface TrackerProps extends React.HTMLAttributes, TrackerStyles { data: TrackerBlockProps[]; defaultColor?: string; emptyColor?: string; } declare const Tracker: React.ForwardRefExoticComponent>; export { Tracker, type TrackerBlockProps, type TrackerProps }; //# sourceMappingURL=tracker.d.ts.map