declare const command: {
    readonly arguments: {
        readonly entities: {
            readonly type: ArrayConstructor;
            readonly required: false;
            readonly description: "Entities to regenerate.";
        };
    };
    readonly configs: {
        readonly skipDbChangelog: {
            readonly description: "Skip the generation of database migrations";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
    };
};
export default command;
