import { MatchOptions, MatchResponse, RouteNode } from './RouteNode'; declare const matchChildren: (nodes: RouteNode[], pathSegment: string, currentMatch: MatchResponse, options?: MatchOptions, consumedBefore?: string | undefined) => MatchResponse | null; export default matchChildren;