interface FeedState { data: T[]; loading: boolean; error: string | undefined; } /** * Fetch a JSON feed in the shape `{ items: T[] }` from `url`. If `url` is unset, * falls back to `inline` synchronously. URL wins when both are provided. */ export declare function useFeedJson(url: string | undefined, inline: T[] | undefined): FeedState; export {};