import { type FetchConf, type ReadConf } from '../client';
export type ClientConf = FetchConf & ReadConf;
export declare const client: (conf: ClientConf) => AsyncGenerator<import('../client').FeedData | import('../client').FeedError, void, unknown>;
