import * as Transport from 'winston-transport'; import * as Sentry from '@sentry/node'; interface WinstonSentryOptions { debug?: boolean; level?: string; init?: boolean; sentry?: any; sentryOpts: Sentry.NodeOptions; sentryScope?(scope: Sentry.Scope): void; } export declare class SentryTransport extends Transport.default { Sentry: any; debug: boolean; level: string; constructor(opts: WinstonSentryOptions); log(info: any, callback: Function): any; } export {};