import { IVirtualDocument, VNode, VNodeTypes } from "./common"; /** * Helper to create monomorphic VNode objects that are inline cached for V8. * Always use this function to create virtual nodes. * The speedups here are : * - All properties are defined and are always in the same order ( 1 shape ) * - Source of object is always this function ( factory source ) */ export declare const hh: (type: VNodeTypes, value?: any, props?: any, _isSVG?: boolean, _document?: Document | IVirtualDocument) => VNode; export declare function h(value: any, props: any, ...children: any[]): VNode;