import { FC, RefObject, ReactType } from 'react'; import { InputSearchProps } from '../InputSearch'; import { LinkProps } from '../../blocks/Link'; import { SelectProps } from '../Select'; import { ButtonProps } from '../../blocks/Button'; export interface SearchItemProps { Link: ReactType; LinkProps: LinkProps; name: string; currency: string; price: string; id: string; } export interface SearchProps { isActive?: boolean; results: SearchItemProps[]; refs?: RefObject[]; error?: boolean; loading?: boolean; closeList?: boolean; emptyError?: string; SelectProps?: SelectProps; InputSearchProps?: InputSearchProps; ButtonProps?: ButtonProps; mobileNavOpen?: boolean; stickyHeader?: boolean; variant: 'normal' | 'header'; } declare const Search: FC; export default Search;