/** * useErrorTracking Hook * Error tracking and reporting (Folio service) */ import type { ErrorReport, UseErrorTrackingOptions } from './types'; export declare const useErrorTracking: ({ onError }?: UseErrorTrackingOptions) => { reportedErrors: ErrorReport[]; isLoading: boolean; error: Error; reportError: (errorReport: ErrorReport) => Promise; }; export type { UseErrorTrackingOptions } from './types'; //# sourceMappingURL=useErrorTracking.d.ts.map