export declare namespace OTLPReceiver {
    type Protocol = 'http' | 'grpc';
    type Config = {
        protocols: {
            [K in Protocol]?: {
                endpoint: string;
            };
        };
    };
}
export declare const Protocol: {
    grpc: {
        endpoint: string;
    };
    http: {
        endpoint: string;
    };
};
//# sourceMappingURL=otlp-receiver.d.ts.map