import React from 'react'; import type { CalendarInputCommonProps } from './types'; import { InputProps } from '../../input'; export interface DateInputProps extends Omit, CalendarInputCommonProps { error?: boolean; format?: string; /** * The target properties to write when the user manually types the date. */ writeTarget?: 'from' | 'to' | 'all'; } export declare const DateInput: React.FC;