import { ReactElement, ReactNode, ElementType, ReactHTML, Attributes } from 'react'; export interface PropsExtensions { sel?: string | symbol; } declare type PropsLike

= P & PropsExtensions & Attributes; declare type Children = string | Array; export declare function h

(type: ElementType

| keyof ReactHTML, a?: PropsLike

| Children, b?: Children): ReactElement

; export {};