import { AuthCommand } from '../authCommand'; export default class RcaGet extends AuthCommand { static hidden: boolean; static readOnly: boolean; static idempotent: boolean; static description: string; static args: { id: import("@oclif/core/interfaces").Arg>; }; static flags: { watch: import("@oclif/core/interfaces").BooleanFlag; output: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }