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