import AbstractStrategy from "./AbstractStrategy"; import {DomElementType} from "../../utils/typedefs"; declare class IterableStrategy implements AbstractStrategy{ public static readonly allowedClasses: Class[]; public readonly allowedClasses: Class[]; public readonly allowedItemClasses: Class[]; public process(selector: string, context: DomElementType | undefined, previousResults: Iterable | undefined): Iterable; public shouldProcess(selector: string, context: DomElementType | undefined, previousResults: Iterable | undefined): boolean; }