import { Transform } from 'node:stream'; import { NodeOptions } from '@sentry/node'; import build from 'pino-abstract-transport'; interface PinoSentryOptions { sentry: NodeOptions; minLevel: number; withLogRecord: boolean; tags: string[]; context: string[]; /** * @deprecated This property is deprecated and should not be used. It is currently ignored and will be removed in the next major version. see docs. */ skipSentryInitialization: boolean; expectPinoConfig: boolean; } declare function export_default(initSentryOptions: Partial): Promise; export { export_default as default };