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