import { IPathPattern, IPathMatch, IParams } from './types'; import { PathParserOptions } from './pathParserRanker'; /** * match pathname, online link https://paths.esm.dev/?p=AAMeJSyAwR4UbFDAFxAcAGAIJnMCo0SmCHGYBdyBsATSBUQBsAPABAwxsAHeGVJwuLlARA..# * @param pattern * @param pathname */ export declare function matchPathname(pattern: IPathPattern, pathname: string): IPathMatch | null; /** * stringify path to string by params and options * @param path * @param params * @param options */ export declare function matchStringify(path: string, params: IParams, options?: PathParserOptions): string;