export declare class PathPattern { private readonly _segments; /** * E.g. "/folder/:path/::rest" */ static parse(pattern: string): PathPattern; private constructor(); match(path: string): { [key: string]: string; } | undefined; build(data: { [key: string]: unknown; }): string; } //# sourceMappingURL=PathPattern.d.ts.map