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