import { FC, HTMLAttributes } from 'react'; export type MeterTrackProps = HTMLAttributes; /** * A visual track element for the `Meter` component that represents * the full available range of values. * * The track serves as the background layer on top of which the * current meter value (fill/indicator) is rendered. */ export declare const MeterTrack: FC;