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