import { HttpClient } from '@angular/common/http'; import { Injector } from '@angular/core'; import { BaseService, EnvironmentService, GridInfo, ResponseResult } from 'tnx-shared'; export declare class RuleService extends BaseService { private _environmentService; entityName: string; serviceCode: string; constructor(http: HttpClient, injector: Injector, _environmentService: EnvironmentService); getDetailCustom(id: string, pid: string): Promise; manualCheck(gridInfo: GridInfo): Promise; commit(rules: any): Promise; getClientRule(gridInfo: GridInfo): Promise; updateClientCheck(rule: any): Promise; }