import { Meter as BaseMeter } from "@base-ui/react/meter"; import * as React from "react"; /** * Displays a scalar measurement within a known range. * * @remarks * - Renders a `
` element by default * - Built on Base UI Meter primitives * - Intended for values such as storage usage, health, or completion * * @example * ```tsx * * * * * * ``` * * @see {@link https://base-ui.com/react/components/meter | Base UI Meter Docs} */ declare const Meter: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; /** * Renders the background track for a meter. * * @remarks * - Renders a `
` element by default * - Built on Base UI Meter track primitives * * @example * ```tsx * * ``` * * @see {@link https://base-ui.com/react/components/meter | Base UI Meter Docs} */ declare const MeterTrack: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; /** * Renders the filled indicator that reflects the current meter value. * * @remarks * - Renders a `
` element by default * - Built on Base UI Meter indicator primitives * * @example * ```tsx * * ``` * * @see {@link https://base-ui.com/react/components/meter | Base UI Meter Docs} */ declare const MeterIndicator: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; /** * Renders the accessible label associated with a meter. * * @remarks * - Renders a `` element by default * - Built on Base UI Meter label primitives * * @example * ```tsx * Storage used * ``` * * @see {@link https://base-ui.com/react/components/meter | Base UI Meter Docs} */ declare const MeterLabel: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; declare namespace Meter { type Props = React.ComponentPropsWithRef; type State = BaseMeter.Root.State; } declare namespace MeterTrack { type Props = React.ComponentPropsWithRef; type State = BaseMeter.Track.State; } declare namespace MeterIndicator { type Props = React.ComponentPropsWithRef; type State = BaseMeter.Indicator.State; } declare namespace MeterLabel { type Props = React.ComponentPropsWithRef; type State = BaseMeter.Label.State; } export { Meter, MeterIndicator, MeterLabel, MeterTrack }; //# sourceMappingURL=meter.d.ts.map