import { ExecutionContext } from '@nestjs/common';
export declare const otelInstrumentation: {
    getCurrentTransactionId(): string | undefined;
    create(transactionName: string, context: ExecutionContext, effectiveType?: "http" | "rpc"): string | undefined;
    addAttributes(attributes: Record<string, string | number | boolean>): void;
    recordException(error: Error): void;
};
