import { type ComponentFactory } from "./types.js"; export type * from "./types.js"; export { DefaultComponentFactory } from "./default.js"; /** * The default merge symbol to use when converting between an array based * ComponentTypeHandle and strig based ComponentTypeHandle */ export declare const TYPE_MERGE_SYMBOL = "/"; /** * Create a new instance of the included DefaultComponentFactory, which should * be wrapped in a form of caching provided by your project. * * @returns The ComponentFactory */ export declare const getFactory: () => ComponentFactory; declare const _default: ComponentFactory; export default _default;