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 (type: ElementType | keyof ReactHTML, a?: PropsLike | Children, b?: Children): ReactElement ;
export {};