import { AxisIdentifier } from './GraphContext';
interface IProps {
    Color: string;
    Opacity: number;
    XVals: [number, number];
    StartY?: number;
    EndY?: number;
    Axis?: AxisIdentifier;
    Stroke?: string;
}
declare const HighlightBox: (props: IProps) => JSX.Element;
export default HighlightBox;
