import * as react from 'react'; import { a as InputBaseProps } from './inputs.types-vl3PAc4q.js'; import './types-8Sv0rCjw.js'; interface DatePickerBaseProps extends InputBaseProps { min?: string; max?: string; includeTime?: boolean; } interface DatePickerSingleProps extends DatePickerBaseProps { range?: false; value?: string; defaultValue?: string; onValueChange?: (value: string) => void; } interface DatePickerRangeProps extends DatePickerBaseProps { range: true; value?: [string, string]; defaultValue?: [string, string]; onValueChange?: (value: [string, string]) => void; } type DatePickerProps = DatePickerSingleProps | DatePickerRangeProps; declare const DatePicker: react.ForwardRefExoticComponent>; export { DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps };