/** * Thrown when trying to register a component that is missing a 'name' parameter * @category Errors */ export declare class ComponentTypeKeyMissing extends Error { constructor(); } /** * Thrown when trying to access a component that has not been registered * @param componentName - The name of the unregistered component * @category Errors */ export declare class ComponentNotRegistered extends Error { componentName: string; constructor(componentName: string); } /** * Thrown when trying to register a component that has already been registered * @param componentName - The name of the already registered component * @category Errors */ export declare class ComponentAlreadyRegistered extends Error { componentName: string; constructor(componentName: string); } //# sourceMappingURL=errors.d.ts.map