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 gy;
    get dateTimeMemberPath(): string;
    set dateTimeMemberPath(a: string);
    private gz;
    get labellingMode(): string;
    set labellingMode(a: string);
    private gs;
    get labelFormats(): TimeAxisLabelFormatDescription[];
    set labelFormats(a: TimeAxisLabelFormatDescription[]);
    private gv;
    get minimumValue(): Date;
    set minimumValue(a: Date);
    private gu;
    get maximumValue(): Date;
    set maximumValue(a: Date);
}
