declare const command: {
    readonly options: {
        readonly skipFakeData: {
            readonly description: "Skip generation of fake data for development";
            readonly type: BooleanConstructor;
            readonly scope: "storage";
        };
    };
    readonly configs: {
        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;
