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;
    showTicks?: boolean;
    showDate?: boolean;
    showRightMostTick?: boolean;
    showLeftMostTick?: boolean;
    useUTC?: boolean;
}
declare function TimeAxis(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TimeAxis>;
export default _default;
