@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 592 B
TypeScript
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 };