import { OTLPMetricExporter } from '@opentelemetry/exporter-metrics-otlp-grpc'; import { HoneycombOptions } from './honeycomb-options'; /** * Builds and returns an OTLP Metric exporter that sends data over grpc * @param options The {@link HoneycombOptions} used to configure the exporter * @returns an {@link OTLPMetricExporter} configured to send telemetry to Honeycomb over grpc */ export declare function configureHoneycombGrpcMetricExporter(options?: HoneycombOptions): OTLPMetricExporter;