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