import { Description } from "./Description";
import { WebDateRangeValueDescription } from "./WebDateRangeValueDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebCustomDateRangeDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private m;
    get label(): string;
    set label(a: string);
    private k;
    get dateRange(): WebDateRangeValueDescription;
    set dateRange(a: WebDateRangeValueDescription);
}
