import { Model } from 'sequelize'; import { IDynamicVariableAttributes } from '../../interfaces/dynamicVariableInterface'; import { TDynamicVariableCreationAttributes } from '../../types/dynamicVariableType'; export declare class DynamicVariableModel extends Model { id: string; path: string; userTypes: string[]; dataType: string; description?: 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 DynamicVariableModel;