import { BaseCommand } from '../../base-command.js'; import { type GatewayOrgPersona } from '../../lib/contracts/index.js'; export default class PersonasList extends BaseCommand { static description: string; static examples: string[]; static summary: string; run(): Promise<{ items: GatewayOrgPersona[]; }>; }