import { FC } from 'react'; import { VNode, HoistFn } from './types'; /** * Render native element or React.js component * * @example h('p', { class: 'paragraph' }, 'Hello world') */ export declare const h: HoistFn>;