import React from 'react';
interface IErrorBoundaryProvider {
    children: React.ReactNode;
    showErrorMessage?: boolean;
    idCreateModal?: string | null;
    customFallback?: JSX.Element;
}
export declare const ErrorBoundaryProvider: ({ children, showErrorMessage, idCreateModal, customFallback, }: IErrorBoundaryProvider) => JSX.Element;
export {};
