import { BaseCommand } from '../../base-command.js'; type FileListResult = { items?: unknown[]; }; export default class FileList extends BaseCommand { static description: string; static examples: string[]; static summary: string; run(): Promise; } export {};