import { PathConsumer } from "./consume"; import { PathMatcher, PathResult } from "./PathMatcher"; export declare class ConsumeUntil implements PathMatcher { private readonly consumer; static nextSlashOrEnd: ConsumeUntil; static endOfPath: ConsumeUntil; constructor(consumer: PathConsumer); static exactlyChars(count: number): PathMatcher; static upToChars(count: number): PathMatcher; static exactlySegments(count: number): PathMatcher; static upToSegments(count: number): PathMatcher; consume(path: string): PathResult; expand(value: string): string; } //# sourceMappingURL=ConsumeUntil.d.ts.map