import "dayjs/locale/fr"; import { TimepickerSpecificProps } from "interface"; import React from "react"; export type DatepickerProps = { value?: string; onChange(value: string | null): void; label?: string; tipsLabel?: string; id?: string; min?: string; max?: string; componentSpecificProps?: TimepickerSpecificProps; }; declare const Datepicker: React.MemoExoticComponent<(props: DatepickerProps) => JSX.Element>; export default Datepicker;