import { Command, flags } from '@oclif/command'; export default class Preview extends Command { static description: string; static flags: { schema: flags.IOptionFlag; }; run(): Promise; generateAPIPreview({ schema, generatedFolderPath, isGeneratedFolderPathExists, }: { schema: any; generatedFolderPath: any; isGeneratedFolderPathExists: any; }): Promise; }