import React from 'react'; import { CalendarInputCommonProps } from './types'; import { InputProps } from '../../input'; export interface DateRangeInputProps extends CalendarInputCommonProps, Pick { className?: string; format?: string; disabled?: boolean; error?: boolean; readOnly?: boolean; /** * The target properties to write when the user manually types the date. */ writeTarget?: 'from' | 'to' | 'all'; onFocus: (target: 'from' | 'to') => void; onClick: (target: 'from' | 'to') => void; showRemoveButton?: boolean; onRemove?: () => void; } export declare const DateRangeInput: React.FC;