import React from 'react'; interface ModuleAdminViewBoundaryProps { readonly moduleId: string; readonly children: React.ReactNode; } interface ModuleAdminViewBoundaryState { readonly error: string | null; } export declare class ModuleAdminViewBoundary extends React.Component { state: ModuleAdminViewBoundaryState; static getDerivedStateFromError(error: unknown): ModuleAdminViewBoundaryState; componentDidUpdate(previous: ModuleAdminViewBoundaryProps): void; render(): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | React.JSX.Element | null | undefined; } export {}; //# sourceMappingURL=ModuleAdminViewBoundary.d.ts.map