import { SpanKind, SpanStatus } from '@opentelemetry/api'; import { ReadableSpan } from '@opentelemetry/tracing'; import * as http from 'http'; export declare const assertSpan: (span: ReadableSpan, kind: SpanKind, validations: { httpStatusCode: number; httpMethod: string; resHeaders: http.IncomingHttpHeaders; hostname: string; pathname: string; reqHeaders?: http.OutgoingHttpHeaders; path?: string | null; forceStatus?: SpanStatus; serverName?: string; component: string; }) => void;