import type { Options } from '@rsmax/types'; import yargs from 'yargs'; import API from './API'; export * from './legacyExport'; export { buildMiniComponent } from './build'; export default class RsmaxCLI { options?: Options; api?: API; run(args: any, callback?: yargs.ParseCallback): { [x: string]: any; }; initCLI(): yargs.Argv; }