import React, { type PropsWithChildren } from 'react'; import 'jb-select'; import type { JBSelectWebComponent, PopoverPosition, SizeVariants } from 'jb-select'; import { type EventProps } from './events-hook.js'; import { type JBSelectAttributes } from './attributes-hook.js'; import type { JBElementStandardProps } from 'jb-core/react'; import './module-declaration.js'; export type JBSelectEventType = T & { target: JBSelectWebComponent; }; export declare function JBSelect(props: Props): React.JSX.Element; export type Props = PropsWithChildren> & JBElementStandardProps> & { ref?: React.ForwardedRef; multiple?: boolean; size?: SizeVariants; name?: string; disabled?: boolean; popoverPosition?: PopoverPosition; };