importtype { SpanOptions } from"@opentelemetry/api";
/**
* Decorator that applies the @Span decorator to all methods of a class.
*
* @param options SpanOptions to be applied to all methods
*/exportdeclarefunctionTraceable(options?: SpanOptions): (target: any) =>void;