import type { ClientOptions } from '../types-hoist/options'; import type { SpanJSON } from '../types-hoist/span'; /** * Check if a span should be ignored based on the ignoreSpans configuration. */ export declare function shouldIgnoreSpan(span: Pick, ignoreSpans: Required['ignoreSpans']): boolean; /** * Takes a list of spans, and a span that was dropped, and re-parents the child spans of the dropped span to the parent of the dropped span, if possible. * This mutates the spans array in place! */ export declare function reparentChildSpans(spans: SpanJSON[], dropSpan: SpanJSON): void; //# sourceMappingURL=should-ignore-span.d.ts.map