import { FC } from 'react';
import { ModuleProviderProps } from './ModuleProviderContext';
/**
* Root provider for the Virtual Modular DOM system.
* Initializes and provides all core services to the module tree.
*
* @example
* ```tsx
* function App() {
* return (
* console.log('Module system ready')}
* >
*
*
*
*
* );
* }
* ```
*/
export declare const ModuleProvider: FC;