import type { JSX } from 'solid-js'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type FeedContentProps = HeadlessPropsWithRef; /** * The scrolling region that holds the articles of a `Feed`. Everything outside * it, such as a load-more button, stays out of the feed's navigation. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/feed.md} */ export declare function FeedContent(props: FeedContentProps): JSX.Element; //# sourceMappingURL=FeedContent.d.ts.map