import { Command } from '@oclif/core'; export default class Ls extends Command { static description: string; static examples: string[]; static usage: string; static strict: boolean; static flags: { page: import("@oclif/core/lib/interfaces").OptionFlag; }; static args: { owner: import("@oclif/core/lib/interfaces/parser").Arg>; }; run(): Promise; }