import * as React from "react"; import { type DateInputProps } from "./date"; export type DateRangeValue = { from?: string; to?: string; }; export type DateRangeInputProps = Omit, "onChange"> & { value?: DateRangeValue; onValueChange?: (value: DateRangeValue) => void; fromPlaceholder?: string; toPlaceholder?: string; fromInputProps?: Omit; toInputProps?: Omit; separator?: React.ReactNode; inputClassName?: string; }; declare function DateRangeInput({ className, value, onValueChange, fromPlaceholder, toPlaceholder, fromInputProps, toInputProps, separator, inputClassName, ...props }: DateRangeInputProps): React.JSX.Element; export { DateRangeInput };