import type { 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
 */
export declare function Traceable(options?: SpanOptions): (target: any) => void;
