import "dayjs/locale/fr"; import { TimepickerSpecificProps } from "interface"; export type ActivityTimeProps = { disabled?: boolean; readOnly?: boolean; value?: { START_TIME: any; END_TIME: any; }; handleChange(response: { [name: string]: string; }, value: string | null): void; label?: string; startTimeLabel?: string; endTimeLabel?: string; id?: string; responses: { response: { [name: string]: string; }; }[]; componentSpecificProps?: TimepickerSpecificProps; variables: Map; }; declare const _default: (props: any) => JSX.Element; export default _default;