declare const command: {
    readonly configs: {
        readonly cypressCoverage: {
            readonly description: "Enable Cypress code coverage report generation";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "storage";
        };
        readonly cypressAudit: {
            readonly description: "Enable cypress-audit/lighthouse report generation";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "storage";
        };
    };
};
export default command;
