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