import { DatePickerProps } from './date-picker.types'; /** * The date picker is a composite component that combines the date input and calendar components. * It provides a text field for entering a date and a calendar for selecting a date. * The date picker is used to select a single date. * * ### Usage * * ```tsx * import { DatePicker } from '@bloomreach/react-banana-ui'; * * export default function MyDatePicker() { * return ( * { * console.log('Changed value', value); // => `Date` object * console.log('Context', context); // => Validation information use it if you want to show validation message * }} * /> * ); * } * ``` */ declare const DatePicker: import('react').ForwardRefExoticComponent>; export default DatePicker;