import { SfCommand } from '@salesforce/sf-plugins-core'; import type { MetadataIndex } from '../../services/metadata-index/types.js'; export type SetupAgentsIndexResult = { outputPath: string; stats: MetadataIndex['stats']; mode: MetadataIndex['mode']; sourceRoot: string; cwd: string; }; export default class Index extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { full: import("@oclif/core/interfaces").BooleanFlag; format: import("@oclif/core/interfaces").OptionFlag; include: import("@oclif/core/interfaces").OptionFlag; exclude: import("@oclif/core/interfaces").OptionFlag; 'source-dir': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; private parseTypeList; }