import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class CalendarDateDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private r;
    get date(): Date;
    set date(a: Date);
    private l;
    get isCurrentMonth(): boolean;
    set isCurrentMonth(a: boolean);
    private n;
    get isPrevMonth(): boolean;
    set isPrevMonth(a: boolean);
    private m;
    get isNextMonth(): boolean;
    set isNextMonth(a: boolean);
}
