export declare class ASMCheckRunner { private _authTicket; private _apiUrl; private _asmUrl; private _trace; private _checkData; private _newCheckResults; private _max_ts_utc; private _totalScoreWeight; private _checkService; constructor(apiUrl: string, authTicket: string, trace?: boolean); setup(): Promise; setAsmUrl(url: string): void; getMaxRunTimeStamp(): string; getTotalScoreWeight(): number; countNewCheckResults(): number; getChecksWithTag(tagName: string, tagValue: string): Promise; wait(ms: number): Promise; getSuccessFullScore(): number; runAllChecks(idleTime: number): Promise; createMarkdownSummary(lowThreshold: number, highThreshold: number): any; calcCheckValueWeight(check: any): any; }