import { ComponentWithAs as _ } from '@chakra-ui/react'; import { CalendarProps } from '../Calendar'; import { DatePickerBaseProps } from './types'; export interface DatePickerProps extends DatePickerBaseProps, CalendarProps { /** * Value to display in input, derived from the selected date. * If provided, input will be controlled, and empty string denotes no date selection. */ inputValue?: string; /** If provided, callback will be fired when the controlled input value changes. */ onInputValueChange?: (value: string) => void; /** Default value for uncontrolled input. */ defaultInputValue?: string; } export declare const DatePicker: _<"input", DatePickerProps>;