import { DataGridColumnDescription } from "./DataGridColumnDescription";
import { FormatSpecifierDescription } from "./FormatSpecifierDescription";
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
import { BaseGenericDataSourceDescription } from "./BaseGenericDataSourceDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class DateTimeColumnDescription extends DataGridColumnDescription {
    static $t: Type;
    protected get_type(): string;
    private static __canMarshalByValue1;
    private static __marshalByValueAlias1;
    constructor();
    private i6;
    get dateTimeFormat(): string;
    set dateTimeFormat(a: string);
    private jd;
    get formatString(): string;
    set formatString(a: string);
    private i8;
    get editorFormatString(): string;
    set editorFormatString(a: string);
    private iw;
    get formatSpecifiers(): FormatSpecifierDescription[];
    set formatSpecifiers(a: FormatSpecifierDescription[]);
    private jc;
    get formatOverrideRef(): string;
    set formatOverrideRef(a: string);
    private i3;
    get showTodayButton(): boolean;
    set showTodayButton(a: boolean);
    private ja;
    get editorType(): string;
    set editorType(a: string);
    private i7;
    get editorDataSourceRef(): string;
    set editorDataSourceRef(a: string);
    private iy;
    get dataSource(): BaseDataSourceDescription;
    set dataSource(a: BaseDataSourceDescription);
    private i0;
    get genericDataSource(): BaseGenericDataSourceDescription;
    set genericDataSource(a: BaseGenericDataSourceDescription);
    private i9;
    get editorTextField(): string;
    set editorTextField(a: string);
    private jb;
    get editorValueField(): string;
    set editorValueField(a: string);
}
