UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 373 B
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;