import { RemoteAppCommand } from '../../remote-app-command.js';
export default class AppInfo extends RemoteAppCommand {
    static args: {
        versions: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
    };
    static description: string;
    static examples: {
        command: string;
        description: string;
    }[];
    static summary: string;
    run(): Promise<void>;
    private showAppInfo;
    private showVersions;
}
