import * as Sentry from "@sentry/node"; import type { ApplicationErrorReporter } from "../../../src/observability/application-error-contract.js"; import type { SentryConfig } from "./config.js"; import { type SentryPolicySdk } from "./policy.js"; export type { ApplicationErrorContext, ApplicationErrorReporter, } from "../../../src/observability/application-error-contract.js"; export type { SentryConfig } from "./config.js"; type NodeSentrySdk = SentryPolicySdk & { init(options: Parameters[0]): unknown; }; export declare function createNodeSentryApplicationErrorReporter(config: Required, sdk?: NodeSentrySdk): ApplicationErrorReporter; //# sourceMappingURL=node.d.ts.map