/************ Processor: ts ************/ import * as dependency_0 from '@beyond-js/react-widgets/page'; // FILE: controller.d.ts declare namespace ns_controller { import PageReactWidgetController = dependency_0.PageReactWidgetController; import View = ns_views_index.View; class Controller extends PageReactWidgetController { get Widget(): typeof View; } } // FILE: views\implementation.d.ts declare namespace ns_views_implementation { const implementation = "\nexport function CheckboxImplementation() {\n\tconst [selectedValue, setSelectedValue] = React.useState(false);\n\n\tfunction handleChange(event) {\n\t\tconst { checked } = event.target;\n\t\tsetSelectedValue(checked);\n\t};\n\n\treturn (\n\t\t
\n\t);\n}"; } // FILE: views\index.d.tsx declare namespace ns_views_index { ///