import React, { ErrorInfo } from 'react'; interface ErrorLoggingContextType { handleError?: (error: Error, errorInfo?: ErrorInfo) => void; } declare const ErrorLoggingContext: React.Context; export { ErrorLoggingContext }; export declare const useErrorLogging: () => { handleError?: ((error: Error, errorInfo?: ErrorInfo) => void) | undefined; }; export declare const useErrorLoggingContext: () => ErrorLoggingContextType; interface InkeepErrorLoggingProviderProps { children: React.ReactNode; } declare const InkeepErrorLoggingProvider: React.FC; export { InkeepErrorLoggingProvider };