import BaseCommand from '../../base-command'; declare const enum TType { Component = 0, Function = 1 } export default class GenerateIndex extends BaseCommand { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; path: import("@oclif/command/lib/flags").IOptionFlag; silent: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: never[]; run(): Promise; askForType(): Promise; } export {};