import { type DropdownIndicatorProps, type OptionType } from '@atlaskit/select'; import { type DatePickerBaseProps, type DateTimePickerSelectProps } from '../types'; export type DatePickerProps = DatePickerBaseProps & { icon?: React.ComponentType>; selectProps?: DateTimePickerSelectProps & { inputValue?: string; }; }; /** * __Date picker__ * * A date picker allows the user to select a particular date. * * - [Examples](https://atlassian.design/components/datetime-picker/date-picker/examples) * - [Code](https://atlassian.design/components/datetime-picker/date-picker/code) * - [Usage](https://atlassian.design/components/datetime-picker/date-picker/usage) */ declare const DatePicker: React.ForwardRefExoticComponent & React.RefAttributes>; export default DatePicker;