import type { SuperAtomType } from "../Mutables/atom/atom"; /** * Checks whether the current pathname matches a route pattern. * * Supports dynamic params in the pattern using `:param` segments. * * Reads `pathAtom` from the nearest `MatesUtils` / `RouterUtils` scope, or uses * the optional `pathAtom` parameter when provided (useful for testing). * * @example * // current path: /users/42 * isPathMatching("/users/:id") // true * isPathMatching("/users") // false */ export declare const isPathMatching: (path: string, pathAtom?: SuperAtomType) => boolean; //# sourceMappingURL=isPathMatching.d.ts.map