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.
13 lines • 578 B
TypeScript
import type { ActionProp, ItemClickedAction } from "@sitecore-search/react";
type ArticleCardItemCardProps = {
className?: string;
displayText?: boolean;
article: any;
onItemClick: ActionProp<ItemClickedAction>;
index: number;
setActiveMarker: any;
customArticleRenderer?: (article: any) => JSX.Element;
};
declare const ArticleHorizontalItemCard: ({ article, setActiveMarker, customArticleRenderer, }: ArticleCardItemCardProps) => import("react/jsx-runtime").JSX.Element;
export default ArticleHorizontalItemCard;
//# sourceMappingURL=index.d.ts.map