import { Injector } from 'reduct'; import { SelfTestStats } from '../schemas/SelfTestStats'; export default class SelfTest { selfTestSuccess: boolean; private uploadSuccess; private httpSuccess; private wsSuccess; private running; private config; private testConfig; constructor(deps: Injector); start(): void; retryFetch(count: number, manifestJson: object): Promise; run(): Promise; checkStatus(response: any): boolean; getTestStats(): SelfTestStats; }