import { PathMatcher, PathResult } from "./PathMatcher"; export declare class Joined implements PathMatcher { private readonly a; private readonly b; constructor(a: PathMatcher, b: PathMatcher); consume(path: string): PathResult; expand(value: A & B): string; } /** * Note- not typesafe. Prefer path() */ export declare function join(...segments: PathMatcher[]): PathMatcher; //# sourceMappingURL=Joined.d.ts.map