import { IHistory, ISearchReference } from '@glodon-aiot/apis'; import { default as React } from 'react'; interface SearchReferenceProps { history: IHistory; openTarget?: string; container?: HTMLElement; onShowList?: (list: ISearchReference[], messageId: string) => void; } declare const SearchReference: React.FC; export default SearchReference;