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