import * as React from 'react';
import { BaseUIComponentProps } from "../../utils/types.js";
import type { MeterRoot } from "../root/MeterRoot.js";
/**
 * Visualizes the position of the value along the range.
 * Renders a `<div>` element.
 *
 * Documentation: [Base UI Meter](https://base-ui.com/react/components/meter)
 */
export declare const MeterIndicator: React.ForwardRefExoticComponent<MeterIndicatorProps & React.RefAttributes<HTMLDivElement>>;
export interface MeterIndicatorProps extends BaseUIComponentProps<'div', MeterRoot.State> {}
export declare namespace MeterIndicator {
  type Props = MeterIndicatorProps;
}