export interface ChartErrorBarProps {
    /** Data key for the upper bound */
    yUpper: string;
    /** Data key for the lower bound */
    yLower: string;
    /** Stroke color */
    color?: string;
    /** Stroke width */
    strokeWidth?: number;
    /** Width of the whisker caps in pixels */
    capWidth?: number;
}
/**
 * Error bars with whisker caps. Pair with ChartBar or ChartDot.
 *
 * @example
 * ```
 * <ChartBar dataKey="mean" color={colors[0]} />
 * <ChartErrorBar yUpper="upper95" yLower="lower95" />
 * ```
 */
export declare function ChartErrorBar({ yUpper, yLower, color, strokeWidth, capWidth, }: ChartErrorBarProps): import("react").JSX.Element;
//# sourceMappingURL=ChartErrorBar.d.ts.map