import { ReactNode } from 'react'; export interface TrackerBlockProps { color?: 'success' | 'warning' | 'error' | string; key?: string | number; tooltip?: ReactNode; } declare const TrackerBlock: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default TrackerBlock;