import { AuthenticatedCommand } from "../../AuthenticatedCommand"; export default class Get extends AuthenticatedCommand { static readonly description = "retrieve details of an Application by reference"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; run(): Promise; }