//#region src/match-path.d.ts /** * Browser-safe DTCG-flavoured path matcher. Exported through the * `@unpunnyfuns/swatchbook-core/match-path` subpath so both the * blocks-side `` / `` / etc. filters * and the MCP `list_tokens` / `search_tokens` tools share one * implementation — the matcher consumers reach for stays in lockstep. * * Accepts: * - exact paths (`color.accent.bg`) * - single-segment wildcard (`color.*`, `color.*.bg`) * - multi-segment trailing globstar (`color.**`) * - multi-segment interior globstar (`color.**.500`) * * No brace expansion, no regex, no character classes — DTCG paths are * dot-delimited and this matches what consumers actually want. Case- * sensitive. */ declare function matchPath(path: string, filter: string | undefined): boolean; //#endregion export { matchPath }; //# sourceMappingURL=match-path.d.mts.map