import React from "react"; import { Color } from "../../../lib"; export interface MarkerBarProps extends React.HTMLAttributes { percentageValue: number; color?: Color; tooltip?: string; showAnimation?: boolean; } declare const MarkerBar: React.ForwardRefExoticComponent>; export default MarkerBar;