UNPKG

react-instantsearch-core

Version:
10 lines (9 loc) 379 B
import React from 'react'; import type { FeedsConnectorParams } from 'instantsearch.js/es/connectors/feeds/connectFeeds'; import type { ReactNode } from 'react'; export type FeedsProps = FeedsConnectorParams & { renderFeed: ({ feedID }: { feedID: string; }) => ReactNode; }; export declare function Feeds({ renderFeed, ...props }: FeedsProps): React.JSX.Element;