import { Type } from "../java"; /** * Enumerate the OWN public exported types of one or more npm packages into the engine's * {@link Type} model. The JS analog of the C# {@code AssemblyTypeEnumerator.Enumerate}: * a {@code ts.Program} is rooted at each package's declaration entry, the {@code references} * closure supplies node_modules resolution, and the types each own package exports are * mapped with full members and methods. Types reached transitively come back shallow. * * @param ownArtifacts package directories whose public types should be defined (full bodies) * @param references node_modules roots / sibling packages used only for symbol resolution */ export declare function exportedTypes(ownArtifacts: string[], references: string[]): Type.FullyQualified[]; //# sourceMappingURL=package-exported-types.d.ts.map