import { AtomMut } from '@reatom/core'; import React from 'react'; import { PropsWithDefault } from '../defaultProps'; import { SelectGroupDefault, SelectItemDefault } from '../types'; type SelectMultipleValueProps = { propsAtom: AtomMut>; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; onClick?: React.MouseEventHandler; renderValue: (items: ITEM[]) => React.ReactNode; inputRef?: React.Ref; onChange?: React.ChangeEventHandler; } & React.RefAttributes; export type SelectMultipleValueComponent = (props: SelectMultipleValueProps) => React.ReactNode | null; export declare const SelectMultipleValueRender: ({ propsAtom, onFocus, onBlur, onClick, renderValue, onChange, inputRef, }: SelectMultipleValueProps, ref: React.Ref) => import("react/jsx-runtime").JSX.Element; export declare const SelectMultipleValue: SelectMultipleValueComponent; export {};