import { Command, flags } from '@oclif/command'; export declare class MakeTsList extends Command { static excludes: string[]; static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; excludes: flags.IOptionFlag; indexFileName: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; createIndexFile(folder: string, excludes: string[], indexFileName: string): Promise<{}>; }