UNPKG

@hhgtech/hhg-components

Version:
16 lines (15 loc) 592 B
import React, { Dispatch } from 'react'; import { SearchBarSectionApi } from "../../../../interfaces/types"; import { Action, ReducerState } from "../reducer"; export type Props = { data: SearchBarSectionApi[]; state: ReducerState; dispatch: Dispatch<Action>; isMobile: boolean; isLoading?: boolean; keyword?: string; hideResults?: string[]; isNavResultItem?: boolean; }; declare const SearchResults: ({ data, state, dispatch, isMobile, isLoading, keyword, hideResults, isNavResultItem, }: Props) => React.JSX.Element; export { SearchResults };