import { default as React } from 'react'; export type IndicatorProps = React.ComponentPropsWithoutRef<'div'> & { value: number | null | undefined; max?: number; color?: string; /** A function to get the accessible label text representing the current value in a human-readable format. If not provided, the value label will be read as the numeric value as a percentage of the max value. */ getValueLabel?(value: number, max: number): string; }; /** * A component that represents the current value of a meter bar. */ export declare const Indicator: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { value: number | null | undefined; max?: number; color?: string; /** A function to get the accessible label text representing the current value in a human-readable format. If not provided, the value label will be read as the numeric value as a percentage of the max value. */ getValueLabel?(value: number, max: number): string; } & React.RefAttributes>;