import { ResolvedDependencyComponent } from '../dependencies/discover.ts'; import { CompilerContext } from '../context/index.ts'; /** * Automatically add imports as appropriate for all referenced internally defined * and externally defined custom elements */ export declare function resolveTagName(context: CompilerContext, tagName: string, fileName: string): { packageName: string | undefined; modulePath: string; } | undefined; export declare function modulePathToString(resolvedPath: { packageName: string | undefined; modulePath: string; }, distRelativeCwd: string): string; export declare function getLocalDefinedComponentsFromApiJson(context: Pick): Readonly>; export declare const exportsForTests: { modulePathToString: typeof modulePathToString; };