import { Model } from 'sequelize'; import { IDynamicVariableLabelAttributes } from '../../interfaces/dynamicVariableLabelInterface'; import { TDynamicVariableLabelCreationAttributes } from '../../types/dynamicVariableLabelType'; export declare class DynamicVariableLabelModel extends Model { id: string; name: string; code?: string; variableIds: string[]; path?: string; userTypes: string[]; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default DynamicVariableLabelModel;