sitecore-search-with-google-map
Version:
A library for seamless integration of Sitecore Search with Google Maps in Next.js applications, enabling location-based searches with flexible UI options.
20 lines • 1.4 kB
TypeScript
import type { SearchResultsStoreState } from "@sitecore-search/react";
type storesListearchResultsProps = {
defaultSortType?: SearchResultsStoreState["sortType"];
defaultPage?: SearchResultsStoreState["page"];
defaultItemsPerPage?: SearchResultsStoreState["itemsPerPage"];
defaultKeyphrase?: SearchResultsStoreState["keyphrase"];
searchSource?: string;
layout?: "SearchWithInputOnTopWithParallelMapAndContent" | "SearchWithInputMapContentStack" | "SearchWithInputOnTopWithParallelMapAndContentSmallMap" | "SearchWithParallelMapAndInputWithContent" | "SearchWithInputOnTopWithParallelMapAndContentReverse" | "SearchWithInputOnTopWithParallelMapAndContentSmallMapReverse" | "SearchWithParallelMapAndInputWithContentReverse" | undefined;
title?: string;
noResultFound?: string;
description?: string;
inputPlaceholder?: string;
customArticleRenderer?: (article: any) => JSX.Element;
mapIcon?: string;
radiusInKM?: number;
};
export declare const SearchResultsComponent: ({ defaultSortType, defaultPage, defaultKeyphrase, defaultItemsPerPage, searchSource, layout, title, description, noResultFound, inputPlaceholder, mapIcon, radiusInKM, customArticleRenderer, }: storesListearchResultsProps) => import("react/jsx-runtime").JSX.Element;
declare const SearchResultsWidget: any;
export default SearchResultsWidget;
//# sourceMappingURL=index.d.ts.map