import * as React from "react"; import type { Loaded } from "./types"; type InitModuleProps = { readonly loaded: Loaded; readonly props: any; }; declare const InitModule: ({ loaded, props }: InitModuleProps) => React.JSX.Element; export default InitModule;