declare const command: {
    readonly configs: {
        readonly silent: {
            readonly description: "Hides output of the generation process";
            readonly cli: {
                readonly type: BooleanConstructor;
                readonly default: false;
            };
            readonly scope: "generator";
        };
        readonly applyConfig: {
            readonly description: "Apply configuration changes";
            readonly cli: {
                readonly type: BooleanConstructor;
                readonly default: false;
            };
            readonly scope: "generator";
        };
        readonly executable: {
            readonly description: "Executable command";
            readonly cli: {
                readonly type: StringConstructor;
            };
            readonly scope: "generator";
        };
    };
    readonly import: readonly ["app"];
};
export default command;
