import Feed from './Feed.js'; import type Actions from '../Actions.js'; import type { IParsedResponse } from '../../parser/types/ParsedResponse.js'; import type { ApiResponse } from '../Actions.js'; export default class TabbedFeed extends Feed { #private; constructor(actions: Actions, data: ApiResponse | IParsedResponse, already_parsed?: boolean); get tabs(): string[]; getTabByName(title: string): Promise>; getTabByURL(url: string): Promise>; hasTabWithURL(url: string): boolean; get title(): string | undefined; }