import { ComponentType, FC, HTMLAttributes, Ref } from 'react';
/**
*
*/
export type DatepickerProps = {
selectedDate?: string;
autoFocus?: boolean;
minDate?: string;
maxDate?: string;
extensionRenderer?: ComponentType;
elementRef?: Ref;
onSelect?: (date: string) => void;
onClose?: () => void;
} & Omit, 'onSelect'>;
/**
*
*/
export declare const Datepicker: FC;