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