import { WIP_ConnectionConfig } from '../connection/types';
export declare function buildInbandTelemetryRequest(connectionConfig: WIP_ConnectionConfig, eventType: string, eventData: any): {
    method: string;
    url: string;
    json: {
        logs: {
            timestamp: number;
            message: {
                driver_type: string;
                driver_version: string;
                source: string;
                type: string;
                value: any;
            };
        }[];
    };
};
