import React, { PropsWithChildren } from 'react'; import { JBOptionWebComponent } from 'jb-select'; type TValue = any; declare global { namespace JSX { interface IntrinsicElements { 'jb-option': JBOptionType; } interface JBOptionType extends React.DetailedHTMLProps>, JBOptionWebComponent> { class?: string; } } } export declare const JBOption: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; type Props = { value: TValue; }; export type JBOptionProps = PropsWithChildren>; export {};