import { AppError } from '../app-error.cjs'; type SentryEvent = any; declare function toSentryEvent(err: AppError): SentryEvent; declare function getSentryFingerprint(err: AppError): string[]; declare function toSentryBreadcrumb(err: AppError): any; export { getSentryFingerprint, toSentryBreadcrumb, toSentryEvent };