import { Model } from 'sequelize'; import { APP_TYPE, COMMAN_STATUS } from '../../constants/app'; import { IFeatureActionAttributes } from '../../interfaces/featureActionInterface'; import { TFeatureActionCreationAttributes } from '../../types/featureActionType'; export declare class FeatureActionModel extends Model { id: string; name: string; status: COMMAN_STATUS; isDefault: boolean; roleId: string; appType: APP_TYPE; moduleId: string; featureId: string; code: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default FeatureActionModel;