import { type PropsWithChildren } from 'react'; import { MeterBarChartInternalConfig } from '../types/meter-bar-chart-internal.js'; import { MeterBarChartProps } from '../types/meter-bar-chart.js'; /** * Hook responsible of building the internal chart config from the props and slots. * @param props - */ export declare const useMeterBarChartConfig: (props: PropsWithChildren) => MeterBarChartInternalConfig;