import { FC, HTMLAttributes } from 'react';
export interface MeterStackSegmentProps extends HTMLAttributes {
/**
* The numeric value this partial item visually represents.
* For example, a segment in a stacked meter.
*/
value?: number;
}
/** A MeterStackSegment is a low-level UI component used within a segmented or stacked meter. Each item visually represents a portion of the overall meter by indicating its value relative to a total sum. Typically used in performance dashboards, quota bars, or password strength breakdowns, these segments are styled individually and positioned side by side to reflect proportional contributions. */
export declare const MeterStackSegment: FC;