/** * Public API for matching a URL pathname to a path. * TODO: reduce returns Array */ declare function matchPath(pathname: string, options?: { [key: string]: any; }): any; export default matchPath;