import { Renderable, VirtualElement, ComponentFunction } from '../types'; export declare function createElement(tag: string | ComponentFunction | Text | Element, props: { [key: string]: unknown; }, ...children: (Renderable | Text | Element)[]): VirtualElement | VirtualElement[];