import { ReactNode } from 'react'; import { MicrofrontendRootProps } from '../types'; /** * Provider component that wraps microfrontends with necessary context */ export interface MicrofrontendProviderProps extends MicrofrontendRootProps { children: ReactNode; } export declare function MicrofrontendProvider({ children, ...props }: MicrofrontendProviderProps): import("react/jsx-runtime").JSX.Element; export { AppShellProvider, resolveAppShellObservabilityConfig } from './AppShellProvider'; export type { AppShellConfig, AppShellObservabilityConfig, AppShellObservabilityEnv, AppShellProviderProps, } from './AppShellProvider'; //# sourceMappingURL=index.d.ts.map