import { EventEmitter } from '@angular/core'; import dayjs, { ConfigType, Dayjs } from 'dayjs'; import { CommonFormControl } from '../../form'; import { ComponentSize } from '../../internal/types'; import { DisabledDateFn, DisabledTimeFn } from '../date-picker.type'; import * as i0 from "@angular/core"; export declare class RangePickerComponent extends CommonFormControl { clearable: boolean; clearText: string; format: string; showFooter: boolean; showTime: boolean; disabledDate: DisabledDateFn; minDate: Dayjs; maxDate: Dayjs; disabledTime: { left: DisabledTimeFn; right: DisabledTimeFn; }; weekStartDay: number; size: ComponentSize; visibleChange: EventEmitter; value: [Dayjs, Dayjs]; valueIn(obj: [ConfigType, ConfigType]): dayjs.Dayjs[]; writeValue(obj: [Dayjs, Dayjs]): void; clearValue(): void; tooltipVisibleChange(visible: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }