import { AuthenticatedCommand } from "../../../AuthenticatedCommand"; export default class Delete extends AuthenticatedCommand { static readonly description = "remove an Access Control List (ACL) from the Workspace"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; run(): Promise; }