import { Span } from '@opentelemetry/api'; export type KnxGroupOperation = 'read' | 'request_value' | 'write'; type KnxDataPoint = { getAddress(): string; type: unknown; }; export declare const observeKnxGroup: (operation: KnxGroupOperation, dataPoint: KnxDataPoint, fn: (span: Span | undefined) => Promise, extraAttributes?: Record) => Promise; export {}; //# sourceMappingURL=observeKnxGroup.d.ts.map