declare class XRayRuntime { xrayInfo: any; private readonly xRayDebugger; constructor(xRayDebugger: any); startXRay(): string | null; startXRayRestApi(uid: string, apiName: string): void; stopXRayRestApi(uid: string, apiName: string): void; updateXRay(uid: string, payload: any): void; stopXRay(uid: string, pConnect: any): void; } export default XRayRuntime;