import { SecurityArchive } from '@vltpkg/security-archive'; import type { EdgeLike, NodeLike } from '@vltpkg/types'; import type { LoadedConfig } from './config/index.ts'; export type HostContextsMapResult = { initialEdges: EdgeLike[]; initialNodes: NodeLike[]; edges: EdgeLike[]; nodes: NodeLike[]; securityArchive: SecurityArchive; }; /** * Creates a Map of host context functions that can be used by the :host * pseudo selector to dynamically load graphs from different sources. */ export declare const createHostContextsMap: (conf: LoadedConfig) => Promise Promise>>;