import { ComponentType, ComponentTypeDictionary, type ComponentFactory } from "./types.js"; export declare class UndefinedComponentFactory implements ComponentFactory { get ignoredContracts(): string[]; set ignoredContracts(newList: string[]); has(): boolean; register(): void; registerAll(): void; resolve(): ComponentType | undefined; extract(): ComponentTypeDictionary; } export default UndefinedComponentFactory;