///
import type { ScaleLinear } from 'd3-scale';
import type { SpringValue } from '@react-spring/core';
declare type Height = SpringValue | number | any;
export interface Props {
fill: string;
value: number | null;
width: number;
x: number;
yScale: ScaleLinear;
borderRadius?: number;
height?: Height;
}
export declare function Bar({ borderRadius, fill, height, value, width, x, yScale, }: Props): JSX.Element | null;
export {};
//# sourceMappingURL=Bar.d.ts.map