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;
