import React from 'react'; interface ISearchPanelProps { suffix?: React.ReactNode; placeholder?: string; panelSearch?: PanelSearchProps; } export interface PanelSearchProps { onPanelSearch?: () => void; onPanelSelect?: () => void; onPanelChange?: () => void; panelResult?: resultProps; panelTypes?: ItypeProps; panelSearchLoading?: boolean; displayImg?: React.ReactNode; } interface ItypeProps { label?: string; code?: string | number; } export interface resultProps { title?: string; typeName?: string; subTitle?: string; icon?: React.ReactNode; cloud?: string; id?: string | number; } declare const SearchPanel: React.ForwardRefExoticComponent>; export default SearchPanel;