import { InputWrapperBaseProps } from '../../internals/InputWrapper'; import { InputDateProps, MaybeDate } from '../InputDate/InputDateComponent'; export interface InputDateRangeProps extends Pick, InputWrapperBaseProps { /** a tuple that represents the [from, to] dates */ value: [MaybeDate, MaybeDate]; /** callback triggered when one of the two dates changes */ onChange: (dates: [MaybeDate, MaybeDate]) => void; /** label to be displayed on the `from` date input. */ fromLabel?: string; /** optional placeholder text for the `from` date */ fromPlaceholder?: string; /** optional hint text for the `from` date */ fromHint?: InputWrapperBaseProps["hint"]; /** label to be displayed on the `to` date input */ /** optional feedback message for the `from` date */ fromFeedback?: InputWrapperBaseProps["feedback"]; toLabel?: string; /** optional placeholder text for the `to` date */ toPlaceholder?: string; /** optional hint text for the `to` date */ toHint?: InputWrapperBaseProps["hint"]; /** optional feedback message for the `to` date */ toFeedback?: InputWrapperBaseProps["feedback"]; /** when true, the two date inputs will be stacked vertically instead of inline */ stacked?: boolean; } export declare const InputDateRange: import('react').ForwardRefExoticComponent>;