import { FC, HTMLAttributes } from 'react'; export type ProgressTrackProps = HTMLAttributes; /** * A visual track element for the `Progress` 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 ProgressTrack: FC;