import { ESearchFrom, ESearchMethod } from './interfaces'; interface SearchbarProps { showBackButtonValue: boolean; setShowBackButtonValue: (value: boolean) => void; showSearchInputValue: boolean; setShowSearchInputValue: (value: boolean) => void; hideContent: boolean; onSubmit: (value: string, method: ESearchMethod) => void; from: ESearchFrom; children: JSX.Element; iconRight: JSX.Element; iconLeft: JSX.Element; searchbarInput: JSX.Element; } export declare const Searchbar: ({ showBackButtonValue, setShowBackButtonValue, showSearchInputValue, setShowSearchInputValue, onSubmit, hideContent, from, children, iconRight, iconLeft, searchbarInput, }: SearchbarProps) => JSX.Element; export {};