import * as React from 'react';
export interface IProps {
    offsetLeft: number;
    offsetRight: number;
    offsetBottom: number;
    heightAxis: number;
    height: number;
    width: number;
    setHeight: (h: number) => void;
    label?: string;
    showRightMostTick?: boolean;
    showLeftMostTick?: boolean;
}
declare function XValueAxis(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof XValueAxis>;
export default _default;
