import { Model } from 'sequelize'; import { IUnitModelAttributes } from '../../interfaces/unitInterface'; import { TUnitModelCreationAttributes } from '../../types/unitType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class UnitModel extends Model { id: string; name: string; code: string; symbol: string; description?: string; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default UnitModel;