import type { JSX } from 'solid-js'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export interface FeedBaseProps { size: number; busy?: boolean; } export type FeedProps = HeadlessPropsWithRef; /** * A stream of articles with the feed keyboard pattern: Page Down * and Page Up move between articles, * Ctrl+Home and Ctrl+End jump to * the ends. Set `size` to the total number of articles, or `-1` when it is * unknown, and `busy` while more are loading. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/feed.md} */ export declare function Feed(props: FeedProps): JSX.Element; //# sourceMappingURL=Feed.d.ts.map