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