import { FC, ReactNode } from 'react'; import { Themes } from '../types'; type Properties = { children: ReactNode; dataTheme?: Themes | null; }; export declare const ErrorBoundaryWrapper: FC; export {};