import { TelemetryRecord } from '../../diagnostics/telemetry-record';
import { RpcBaseData } from '../rpc-base';
/**
 * RPC telemetry command and version.
 */
export declare class RpcTelemetryKey {
    static command: string;
    static version: string;
}
/**
 * Rpc telemetry record.
 */
export interface RpcTelemetryRecord extends TelemetryRecord, RpcBaseData {
    /**
     * The client session ID which is auto generated when user opened the site.
     * This should be auto inserted when logging submitted to the back-end.
     */
    sessionId: string;
    /**
     * The timestamp. Date.now() / the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.
     */
    timestamp: number;
}
