import { type PropsWithChildren } from 'react'; export interface MeterBarChartFormattedValueProps { value: number; total?: number; auto?: boolean; } /** * Component responsible to render a formatted value. * When auto=true the component will generate the default label(e.g. value/total). * @param value - * @param total - * @param auto - * @param children - */ export declare const MeterBarChartFormattedValue: { ({ value, total, auto, children, }: PropsWithChildren): string | import("react/jsx-runtime.js").JSX.Element; displayName: string; };