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