export interface InterfaceProvider { implements: string[]; disabledExports?: Set; } export interface InterfaceConsumer { id: string; folder: string; dependencies: Record; optionalDependencies?: Record; } export interface UnresolvedInterface { moduleId: string; interfacePackage: string; standalone?: boolean; } export interface InterfaceResolutionResult { unresolved: UnresolvedInterface[]; stubbed: UnresolvedInterface[]; } export declare function findUnresolvedInterfaces(providers: InterfaceProvider[], consumers: InterfaceConsumer[], knownResolved?: Iterable): InterfaceResolutionResult;