import { PropsWithChildren } from 'react';
type ErrorBoundaryProps = PropsWithChildren<{
    dependencies?: ReadonlyArray<any>;
}>;
export declare function ErrorBoundary({ children, dependencies }: ErrorBoundaryProps): import("react/jsx-runtime").JSX.Element;
export {};
