import { responsesHourChecker } from "interface"; import { HourCheckerOption } from "interface/HourCheckerOptions"; import { IODataStructure } from "interface/WeeklyPlannerTypes"; import { ReactElement } from "react"; export type HourCheckerProps = { handleChange?(response: { [name: string]: string; }, value: boolean): void; id?: string; responses: HourCheckerOption[]; value: { [key: string]: boolean; }; label?: string; helpStep?: number; expandLessIcon: ReactElement; expandMoreIcon: ReactElement; expandLessWhiteIcon: ReactElement; expandMoreWhiteIcon: ReactElement; workIcon: ReactElement; handleChangeData(response: { [name: string]: string; }, value: IODataStructure[]): void; store: IODataStructure[]; saveHours(idSurvey: string, response: responsesHourChecker): void; currentDate: string; idSurvey: string; }; declare const _default: (props: any) => JSX.Element; export default _default;