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