/**
 * Class for handling global unhandled exceptions and rejections
 */
export declare class GlobalErrorHandler {
    private static isInitialized;
    /**
     * Initializes the global error handler
     */
    static initialize(): void;
    /**
     * Handles an uncaught exception
     * @param error - The uncaught exception
     */
    private static handleUncaughtException;
    /**
     * Handles an unhandled rejection
     * @param reason - The reason for the rejection
     */
    private static handleUnhandledRejection;
}
//# sourceMappingURL=GlobalErrorHandler.d.ts.map