import { RootProps } from './meter-bar-root';
import { IndicatorProps } from './meter-bar-indicator';
/**
*
* @example
* ```tsx
*
* ```
* @example
* ```tsx
*
*
*
*
* ```
*/
export declare const MeterBar: import('react').ForwardRefExoticComponent> & {
Indicator: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & {
value: number | null | undefined;
max?: number;
color?: string;
getValueLabel?(value: number, max: number): string;
} & import('react').RefAttributes>;
};
export type MeterBarProps = {
Root: RootProps;
Indicator: IndicatorProps;
};