export declare function renderAllTag(props: PropObject, prefixUrl: string, prefixUrlFile: string, tokenParams: TokenParamsJSON): {
    renderLabelByCondition: (type: string, status: boolean) => void;
    showCheckedLegend: (primitiveIds: number[]) => Promise<void>;
    updateLogicalLabel: (logicalPointData: PointMsgType[]) => Promise<void>;
    updateAlarmLabel: (alarmData: AlarmDeviceData[], allTagBindDeviceData: TagBindDevice[]) => void;
    updateAbnormalLabel: (abnormalData: AbnormalDeviceData[], allTagBindDeviceData: TagBindDevice[]) => void;
    checkRenderTag: () => Promise<void>;
    initAllElementsErrorStatus: () => Promise<false | undefined>;
};
