import { IODataStructure } from "../../../../interface/WeeklyPlannerTypes"; import { responsesType, WeeklyPlannerSpecificProps } from "../../../../interface"; export type WeeklyPlannerProps = { handleChange(response: { [name: string]: string; }, value: IODataStructure[] | string[] | boolean[]): void; value: { [key: string]: string[] | IODataStructure[] | boolean[]; }; componentSpecificProps: WeeklyPlannerSpecificProps; bindingDependencies: string[]; responses: [ responsesType, responsesType, responsesType, responsesType, responsesType, responsesType ]; variables: Map; placeWork: { bindingDependencies: string[]; responses: [ responsesType, responsesType, responsesType, responsesType, responsesType, responsesType ]; label: string; }; }; declare const _default: (props: any) => JSX.Element; export default _default;