import { Matcher } from './matchers.js'; /** * Parses a path and extracts the parameters from it * * @param matchers - An array of Matchers * @param path - The path * * @category Utility Functions * * @returns the extracted parameters */ export declare function parsePath(matchers: Matcher[], path: string): Record;