import { Description } from "./Description";
import { TimeAxisLabelFormatDescription } from "./TimeAxisLabelFormatDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class LabelFormatOverrideEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private m;
    get dateTime(): Date;
    set dateTime(a: Date);
    private k;
    get format(): TimeAxisLabelFormatDescription;
    set format(a: TimeAxisLabelFormatDescription);
    private o;
    get label(): string;
    set label(a: string);
}
