import React from 'react'; import { DateRangeValue } from '../types'; interface DateRangeFieldProps { value: DateRangeValue; onChange?: (range: DateRangeValue) => void; onFocus?: React.FocusEventHandler; onClick?: React.MouseEventHandler; onClear: () => void; onEscape: () => void; } export declare const DateRangeField: React.FC; export {};