@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 513 B
TypeScript
import React, { Dispatch } from 'react';
import { ReducerState, Action } from "./reducer";
import { TypeSearch } from "./types";
type SearchContainerProps = {
state: ReducerState;
type: TypeSearch;
isLoading: boolean;
clientSlug?: string;
typeInformation: any;
dispatch: Dispatch<Action>;
};
declare const SearchResultContent: ({ state, type, isLoading, clientSlug, typeInformation, dispatch, }: SearchContainerProps) => React.JSX.Element;
export default SearchResultContent;