import { StringEnum } from '@techmely/types';

declare function createElement(tag: StringEnum<keyof HTMLElementTagNameMap> | HTMLElement, ...children: any[]): HTMLElement;

export { createElement };
