import React, { PropsWithChildren } from 'react'; import { JBOptionWebComponent } from 'jb-select'; import './module-declaration.js'; export declare function JBOption(props: JBOptionProps): React.JSX.Element; export declare namespace JBOption { var displayName: string; } type Props = { value: TValue; ref?: React.ForwardedRef | undefined>; }; export type JBOptionProps = PropsWithChildren>; export {};