import { Connection } from "typeorm"; import { Entity } from "../../db-reverse/library"; import LocalCommand from "../core/local-command"; export declare type ModelGenerationOptions = { model?: boolean; objectType?: boolean; input?: boolean; filter?: boolean; sort?: boolean; resolver?: boolean; }; export default class GenerateCrud extends LocalCommand { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; input: import("@oclif/parser/lib/flags").IBooleanFlag; filter: import("@oclif/parser/lib/flags").IBooleanFlag; sort: import("@oclif/parser/lib/flags").IBooleanFlag; resolver: import("@oclif/parser/lib/flags").IBooleanFlag; all: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: never[]; run(): Promise; } export declare const getConnection: () => Promise; export declare const gatherModelsInfo: (connection: Connection) => Promise;