import React from 'react';
import { WidgetContext } from '../editor/widget-framework/widget-context';
export interface ErrorBoundaryCustomProps {
    children?: React.ReactNode;
    context: WidgetContext<any>;
}
export declare function ErrorBoundaryCustom({ children, context }: ErrorBoundaryCustomProps): import("react/jsx-runtime").JSX.Element;
