import { DataType } from '../../../../core/variable/data-type'; import { BitConditonLogic } from './bit-condition-logic'; export declare class BitConditionModel { variableName: string; variableGroupName: string; bitConditionLogic: BitConditonLogic; dataSourceCode: number; isBitwiseIndex?: boolean; bitIndex?: number; dataType?: DataType; variableVersion?: number; constructor(variableName: string, variableGroupName: string, bitConditionLogic: BitConditonLogic, dataSourceCode: number, isBitwiseIndex?: boolean, bitIndex?: number, dataType?: DataType, variableVersion?: number); }