import type { Element } from '../types'; import { type SelectorPart, type CompiledSelector } from './parse'; export declare function matches(el: Element, selector: string): boolean; export declare function matchesSelector(el: Element, selector: CompiledSelector): boolean; export declare function matchesPart(el: Element, part: SelectorPart): boolean; //# sourceMappingURL=match.d.ts.map