import { Strategy } from '../types'; /** * Second strategy in the chain. Anchors on the element's `id` when the id is * "stable" — i.e., present, not suppressed via the explicit-tracking-attribute * empty-value mechanism, and not matching any autogenerated-id pattern. * * Returns `tag#id` (CSS-escaped) when the id is usable; null otherwise. * * Filtering is delegated to `getStableId` so this strategy and the * `fallback-css-path` walker (in the orchestration PR) share a single source * of truth for "is this id usable?" */ export declare const stableId: Strategy; //# sourceMappingURL=stable-id.d.ts.map