import * as React from 'react'; import type { SelectCssVars } from '../select'; import { HTMLProps } from '../utils/utilityTypes'; import type { BaseDateSelectProps } from './interface'; export declare type DateSelectProps = BaseDateSelectProps & HTMLProps; declare const DateSelect: React.FC; export default DateSelect;