import React from 'react'; import { CalendarInputCommonProps } from './types'; import { InputProps } from '../../input'; export interface DateSingleInputProps 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'; placeholder?: string; onFocus?: () => void; onClick?: () => void; showRemoveButton?: boolean; onRemove?: () => void; } export declare const DateSingleInput: React.FC;