import { type BaseTrackProps } from './util'; type SimpleTrackProps = BaseTrackProps & { color: string; }; /** * SimpleTrack component that renders a color-filled track with a label and percentage. * * @param {Object} props - The properties passed to the component. * @param {string} props.label - The label text to display. * @param {number} props.perc - The percentage value to display. * @param {string} props.color - The background and border color of the track. * @param {boolean} props.isSmall - Flag to determine if the track should be rendered in a smaller size. * @param {Object} props.style - Additional style properties to apply to the track. * * @returns {JSX.Element} The rendered color track component with a label and percentage. */ export declare const SimpleTrack: (props: SimpleTrackProps) => import("react/jsx-runtime").JSX.Element; export default SimpleTrack;