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;
