import type { Element } from "../element.js";
export type ElementFactory = (params?: Record<string, unknown>) => Element;
export declare const ELEMENT_REGISTRY: Record<string, ElementFactory>;
export declare function getRegisteredTypes(): string[];
export declare const getAvailableTypes: typeof getRegisteredTypes;
export declare function getAnchors(type: string): string[];
