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<SelectCssVars>;
declare const DateSelect: React.FC<DateSelectProps>;
export default DateSelect;
