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