import { IBrowserCondition, IExpectedConditionResult } from "../../interfaces"; export default class DocumentReady implements IBrowserCondition { readonly name: string; private readonly expected; private readonly preferred; constructor(preferred: boolean); evaluate(): IExpectedConditionResult; }