import { CategoryXAxisDescription } from "./CategoryXAxisDescription";
import { TimeAxisLabelFormatDescription } from "./TimeAxisLabelFormatDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class OrdinalTimeXAxisDescription extends CategoryXAxisDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private el;
    get dateTimeMemberPath(): string;
    set dateTimeMemberPath(a: string);
    private em;
    get labellingMode(): string;
    set labellingMode(a: string);
    private ef;
    get labelFormats(): TimeAxisLabelFormatDescription[];
    set labelFormats(a: TimeAxisLabelFormatDescription[]);
    private ei;
    get minimumValue(): Date;
    set minimumValue(a: Date);
    private eh;
    get maximumValue(): Date;
    set maximumValue(a: Date);
}
