/************ 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 ImplementationTabs() {\n const [tab, setTab] = React.useState(0);\n\n\treturn (\n \n \n \n \n \n \n \n \n

Tab Content 0

\n

Tab Content 1

\n

Tab Content 2

\n

Tab Content 3

\n
\n
\n\t);\n }\n"; } // FILE: views\index.d.tsx declare namespace ns_views_index { /// function View(): JSX.Element; } // FILE: views\results.d.tsx declare namespace ns_views_results { /// function Results(): JSX.Element; } export import Controller = ns_controller.Controller; export import View = ns_views_index.View; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };