declare const DEFAULT_IMPORT_GRAPH_EXTENSIONS: string[]; declare const IMPORT_FROM_RE: RegExp; declare const IMPORT_SIDE_EFFECT_RE: RegExp; declare const EXPORT_FROM_RE: RegExp; declare const DYNAMIC_IMPORT_RE: RegExp; type LoadedTsconfig = { baseUrlAbs?: string; matchers: TsconfigPathMatcher[]; }; type TsconfigPathMatcher = { key: string; prefix: string; suffix: string; hasWildcard: boolean; targets: string[]; }; declare function normalizePathInRoot(rootDir: string, value: string): string; export { DEFAULT_IMPORT_GRAPH_EXTENSIONS, DYNAMIC_IMPORT_RE, EXPORT_FROM_RE, IMPORT_FROM_RE, IMPORT_SIDE_EFFECT_RE, normalizePathInRoot, }; export type { LoadedTsconfig, TsconfigPathMatcher, }; //# sourceMappingURL=shared.d.ts.map