interface FeedContextData { ownerID: string; labelID: string; contentID: string; size: number; busy: boolean; focusPrev: () => void; focusNext: () => void; } export declare const FeedContext: import("solid-js").Context; /** * Reads the nearest `Feed`'s internal context, which holds the generated ids * and the focus navigator shared by its articles. Throws when called outside a * `Feed`. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/feed.md} */ export declare function useFeedContext(componentName: string): FeedContextData; export {}; //# sourceMappingURL=FeedContext.d.ts.map