import Client from '../../Client'; import { RoundData } from '../../Types'; import FeedEnd from './items/FeedEnd'; import FeedPoll from './items/FeedPoll'; export type FeedItem = FeedPoll | FeedEnd; export declare const FeedItems: { 0: typeof FeedPoll; 1: typeof FeedEnd; }; export default class FeedManager { readonly client: Client; feed: FeedItem[] | null; constructor(client: Client); fetch(options?: {}): Promise; unlock(): Promise; fetchRoundData(round: string): Promise; } //# sourceMappingURL=FeedManager.d.ts.map