import "dayjs/locale/fr"; import { TimepickerSpecificProps } from "interface"; export type TimepickerProps = { value?: string; handleChange(response: { [name: string]: string; }, value: string | null): void; label?: string; tipsLabel?: string; id?: string; response: { [name: string]: string; }; componentSpecificProps?: TimepickerSpecificProps; minTime?: string; }; declare const _default: (props: any) => JSX.Element; export default _default;