import { AxisIdentifier } from './GraphContext';
import { IProps as ILineProps } from './Line';
export interface IProps extends ILineProps {
    threshHolds: IThreshold[];
}
export interface IThreshold {
    Value: number;
    Color: string;
    axis?: AxisIdentifier;
}
declare function LineWithThreshold(props: IProps): JSX.Element | null;
export default LineWithThreshold;
