import type { ChannelCredentials, Metadata } from '@grpc/grpc-js';
import { CompressionAlgorithm, OTLPExporterConfigBase } from '@opentelemetry/otlp-exporter-base';
/**
 * OTLP Exporter Config for Node
 */
export interface OTLPGRPCExporterConfigNode extends OTLPExporterConfigBase {
    credentials?: ChannelCredentials;
    metadata?: Metadata;
    compression?: CompressionAlgorithm;
}
//# sourceMappingURL=types.d.ts.map