export declare const enum PartType { 'literal' = 0, 'historyFallback' = 1, 'wildcard' = 2, 'parameter' = 3 } export interface Parameter { type: PartType.parameter; paramName: string; regexp?: RegExp; optional?: boolean; } export type ParsedPath = { type: PartType.literal; value: string; } | { type: PartType.historyFallback; } | { type: PartType.wildcard; } | Parameter; //# sourceMappingURL=types.d.ts.map