/// import './search.scss'; export interface ISearchOptions { label: any; value: any; } export interface ISearchResultProps { options: ISearchOptions[]; setSearchValue: any; toggleShowOptions: any; searchOptionCard: any; onClick: (option: any) => void; createButtonText?: string; onCreateButtonClick?: () => void; isSearchComplete: boolean; } export declare const SearchResult: (props: ISearchResultProps) => JSX.Element;