import { transportFunctionType } from "../index"; type SentryTransportOptions = { SENTRY: { captureException: (msg: string | typeof Error) => void; addBreadcrumb: (msg: string | { message: string; }) => void; }; errorLevels?: string | Array; }; declare const sentryTransport: transportFunctionType; export { sentryTransport };