import type AttributeFactory from "../types/attribute-factory.js"; import type NodeFactory from "../types/node-factory.js"; type Attributes = [name: string, value: string]; export default function createElementFactory(tag: string, attributes?: Attributes[], attributeFactories?: AttributeFactory[], children?: NodeFactory[]): NodeFactory; export {};