import type { ArgumentsCamelCase, Argv, CommandModule } from 'yargs'; export declare type Options = { dump: boolean; save: boolean; path: string; schema: string; }; export declare class GenerateEntitiesCommand implements CommandModule { command: string; describe: string; /** * @inheritDoc */ builder(args: Argv): Argv; /** * @inheritDoc */ handler(args: ArgumentsCamelCase): Promise; }