declare const command: {
    readonly configs: {
        readonly entities: {
            readonly argument: {
                readonly description: "Which entities to generate a new changelog";
                readonly type: ArrayConstructor;
            };
            readonly scope: "none";
        };
        readonly skipFakeData: {
            readonly description: "Skip generation of fake data for development";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "storage";
        };
        readonly recreateInitialChangelog: {
            readonly description: "Recreate the initial database changelog based on the current config";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly skipDbChangelog: {
            readonly description: "Skip the generation of database migrations";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
        readonly incrementalChangelog: {
            readonly cli: {
                readonly description: "Creates incremental database changelogs";
                readonly type: BooleanConstructor;
            };
            readonly jdl: {
                readonly type: "boolean";
                readonly tokenType: "BOOLEAN";
            };
            readonly scope: "storage";
        };
    };
};
export default command;
