import { AxisIdentifier, LineStyle } from './GraphContext';
export interface IProps {
    start?: number;
    end?: number;
    Value: number;
    setValue?: (y: number) => void;
    color: string;
    lineStyle: LineStyle;
    width: number;
    axis?: AxisIdentifier;
}
declare function HorizontalMarker(props: IProps): JSX.Element;
export default HorizontalMarker;
