import { AuthenticatedCommand } from "../../../AuthenticatedCommand"; export default class Delete extends AuthenticatedCommand { static readonly description = "delete a SIP Agent from the network"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; run(): Promise; }