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