import type { ComponentType } from "react"; import type { LayoutElementProperties } from "./components"; import type { LibraryRegistry } from "./config"; /** * Entry point for the framework library. * * @param registry The library registry. */ export default function (registry: LibraryRegistry): void; /** * Returns imports as the expected type. * * @param getter Returns the import. */ export declare const getAsComponentType: (getter: () => Promise<{ default: unknown; }>) => Promise>;