interface PathMapping {
    pattern: RegExp;
    paths: string[];
}
/**
 * @see https://github.com/aleclarson/vite-tsconfig-paths/blob/e8f0acf7adfcfbf77edbe937f64b4e5d39557ad0/src/mappings.ts
 */
declare function convertTsPathsToRegexes(paths: Record<string, string[]>, baseUrl: string): PathMapping[];

export { type PathMapping as P, convertTsPathsToRegexes as c };
