export declare class RangeDatePickerModel {
    fromDate: any;
    toDate: any;
    constructor(fromDate?: any, toDate?: any);
    isString(inputValue: any): boolean;
    reset(): void;
}
