import type { Event } from "../Event.js"; import { EventRegistry } from "../EventRegistry.js"; import type { TraceCompletedArgs } from "./utility-network.js"; /** * Events relating to utility network tracing. */ export declare class TracingEvents extends EventRegistry { protected readonly _prefix = "tracing"; /** * Raised when a utility network trace is successfully completed. * * @mobileOnly */ get completed(): Event; }