import { FC, RefObject } from 'react'; export interface InputSearchProps { inputRef?: RefObject; value?: string; disabled?: boolean; placeholder?: string; label: string; name: string; hasResults?: boolean; onChange?: (e: any) => void; onKeyDown?: (e: any) => void; onFocus?: (e: any) => void; onInvalid?: (e: any) => void; onInput?: (e: any) => void; onSearchToggle?: (e: any) => void; setCloseSearch?: (value: any) => void; mobileNavOpen?: boolean; stickyHeader?: boolean; closeSearch: boolean; searchText: string; variant: 'normal' | 'header'; } declare const InputSearch: FC; export default InputSearch;