import './DatePickerAdditionalControls.css'; import React from 'react'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; import { DatePickerAdditionalControlRenderProp, DatePickerPropDateTimeView, DatePickerPropType } from '../types'; type Props = PropsWithHTMLAttributes<{ renderAdditionalControls?: DatePickerAdditionalControlRenderProp; currentVisibleDate?: Date; type: DatePickerPropType; view: DatePickerPropDateTimeView; }, HTMLDivElement>; export declare const DatePickerAdditionalControls: React.FC; export {};