import { BaseCommand } from '../../base-command.js'; type ReorderItem = { id: string; index: number; }; export default class ViewReorder extends BaseCommand { static flags: { file: import("@oclif/core/interfaces").OptionFlag; }; static description: string; static examples: string[]; static summary: string; run(): Promise<{ items: ReorderItem[]; reordered: boolean; fallbackUsed: boolean; }>; } export {};