import React from 'react';
import { TypeSearch } from "../types";
type Props = {
    currentTab: TypeSearch;
    isMobile: boolean;
    hideTabBookingSearch?: string[];
    setCurrentTab: (val: TypeSearch) => void;
};
declare const TabSearch: ({ currentTab, hideTabBookingSearch, isMobile, setCurrentTab, }: Props) => React.JSX.Element;
export default TabSearch;
