import { Stop } from './getColorBasedOnStops'; import { HTMLAttributes } from 'react'; export interface IBatteryChartProps extends HTMLAttributes { /** * Current value of the battery. Should be between 0 and 1 */ value: number; /** * Array of stops to define the color thresholds */ stops?: Array; /** * Number of blocks to display * @default 10 */ numberBlocks?: number; /** * If true, the colors will gradually change based on the value * @default false */ gradualStopColors?: boolean; } export declare const BatteryChart: ({ numberBlocks, value, stops, gradualStopColors, ...props }: IBatteryChartProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=BatteryChart.d.ts.map