import { MeterBarSize } from '../types/meter-bars.js'; export type MeterBarLayoutSizeProps = { /** * The size that applies to the value, icon, and label. * @defaultvalue 'size16' */ size: MeterBarSize; segmentHeight: number; }; export declare const MeterBarLayoutSizeContext: import("react").Context; export declare const useMeterBarLayoutSize: { (): MeterBarLayoutSizeProps; displayName: string; };