import type { TreeModel } from './types'; import React from 'react'; export declare type TreeResultsProps = { searchInputValue: string; tree?: TreeModel[]; onSelectedFieldChange?: (fieldData: TreeModel['payload']) => void; }; /** * Results list for TreeSelect */ export declare const TreeResults: ({ searchInputValue, tree }: TreeResultsProps) => React.JSX.Element;