/// import { NodeOptions } from "@sentry/node"; import build from "pino-abstract-transport"; interface PinoSentryOptions { sentry: NodeOptions; minLevel: number; withLogRecord: boolean; tags: string[]; context: string[]; skipSentryInitialization: boolean; } export default function (initSentryOptions: Partial): Promise; export {};