import React from 'react'; import { WithTranslation, WithTranslationProps } from 'react-i18next'; import { Lang } from '../../models'; import './SearchBar.scss'; export interface SearchBarProps { lang: Lang; searchQuery?: string; onClickPrevSearch?: () => void; onClickNextSearch?: () => void; onCloseSearchBar?: () => void; searchCurrentIndex?: number; searchCountResults?: number; } declare const _default: React.ComponentType & WithTranslationProps & { children?: React.ReactNode; }, WithTranslationProps>, keyof WithTranslation> & WithTranslationProps>; export default _default;