import type { TreeSelectSearchPanelItem } from './types'; import type { Styled } from '../../hooks/useStyled'; import type { TreeItem } from '../../tree/types'; import type { CLASSES } from '../vars'; interface TreeSelectSearchPanelProps> { ref?: React.Ref<(code: any) => TreeSelectSearchPanelItem | undefined>; namespace: string; styled: Styled; id: string; list: TreeSelectSearchPanelItem[]; customItem: ((item: T) => React.ReactNode) | undefined; itemId: (value: V) => string; itemFocused: TreeSelectSearchPanelItem | undefined; multiple: boolean; onlyLeafSelectable: boolean; virtual: boolean | number; focusVisible: boolean; onClick: (item: TreeSelectSearchPanelItem) => void; } export declare function TreeSelectSearchPanel>(props: TreeSelectSearchPanelProps): React.ReactElement | null; export {};