import { ASMApiService, IApiResponse } from './asmApi'; export declare class ASMCheckService extends ASMApiService { private _allMonitors; constructor(debug?: boolean); init(all?: boolean): Promise; private getAllMonitorGroups; findMonitorGroups(groupNames: string[]): number[]; updateMonitorGroups(id: number, groups: any): Promise; runCheck(id: number): Promise; updateTags(checks: any, tags: any): Promise; getInstances(): Promise; getChecksByTag(tagName: string, tagValue: string): Promise; getCheck(id: number): Promise; findByName(name: string): any[]; }