import { BuildCues } from './cues'; import { SelectorPart } from './playwrightEvaluator'; declare type IsMatch = { selectorParts: SelectorPart[]; target: HTMLElement; }; export declare const isMatch: ({ selectorParts, target }: IsMatch) => boolean; export declare const toSelector: (selectorParts: SelectorPart[]) => string; export declare const buildSelector: (options: BuildCues) => string; export {};