import { FC, HTMLAttributes } from 'react';
import { MeterStackSize } from './types';
export interface MeterStackProps extends HTMLAttributes {
/**
* Visual size of the meter component.
* Typically maps to predefined size tokens in a design system.
*/
size?: MeterStackSize;
/**
* Maximum possible value of the meter.
* Default is 100.
*/
max?: number;
/**
* Minimum possible value of the meter.
* Default is 0.
*/
min?: number;
/**
* The current numeric value displayed by the meter.
* Required. Clamped between `min` and `max`.
*/
value: number;
/**
* Whether the meter should expand to fill the width with its container.
*/
fullWidth?: boolean;
}
/** MeterStack is a composite UI component used to display a meter segmented into parts, where each part represents a portion of the total. */
export declare const MeterStack: FC;