import type { Child, Component, Element } from '../types';
declare function h<P extends {
    children?: Child;
} = {}>(component: Component<P>, child: Child): Element;
declare function h<P extends {
    children?: Child;
} = {}>(component: Component<P>, props?: P | null, ...children: Child[]): Element;
export default h;
//# sourceMappingURL=h.d.ts.map