import type { ParsedPath } from './types'; import type { Params } from '../types'; export declare const getParts: (pathname: string) => string[]; export declare const isHistoryFallback: (part: string) => boolean; export declare const isWildcard: (part: string) => boolean; export declare const isParameterized: (part: string) => boolean; export declare const parse: (part: string) => ParsedPath; export declare const makePath: (pathname: string, params: Params) => string; //# sourceMappingURL=utils.d.ts.map