export type { ExceptionHandlerOptions } from './NativeGlobalExceptionHandler'; export declare const CrashType: { nsexception: "nsexception"; array_bounds: "array_bounds"; invalid_argument: "invalid_argument"; memory_access: "memory_access"; abort: "abort"; stack_overflow: "stack_overflow"; internal_inconsistency: "internal_inconsistency"; malloc_error: "malloc_error"; sigill: "sigill"; sigbus: "sigbus"; }; export type CrashType = keyof typeof CrashType; export interface ErrorUtilsType { setGlobalHandler: (handler: JSExceptionHandler) => void; getGlobalHandler: () => JSExceptionHandler | undefined; reportError: (error: any) => void; } export type JSExceptionHandler = (error: Error, isFatal: boolean) => void; export type NativeExceptionHandler = (exceptionMsg: string) => void; //# sourceMappingURL=types.d.ts.map