import { ParamsValue } from "../Values"; import { ExtendedMatchResult, MatchFn, MatchResult } from "./MatchFn"; export declare type MatchesPathInput = string | string[] | RegExp; export interface MatchesPathResult extends ExtendedMatchResult { params: ParamsValue; } export declare function isMatchesPathResult(result: MatchResult): result is MatchesPathResult; export declare const matchesPath: (value: MatchesPathInput) => MatchFn;