import Feed from '../../core/mixins/Feed.js'; import Message from '../classes/Message.js'; import type Thumbnail from '../classes/misc/Thumbnail.js'; import type NavigationEndpoint from '../classes/NavigationEndpoint.js'; import type { ObservedArray } from '../helpers.js'; import type Actions from '../../core/Actions.js'; import type { ApiResponse } from '../../core/Actions.js'; import type { IBrowseResponse } from '../types/ParsedResponse.js'; export default class Playlist extends Feed { #private; info: { subtitle: import("../misc.js").Text | null; author: import("../misc.js").Author; thumbnails: Thumbnail[]; total_items: string; views: string; last_updated: string; can_share: boolean; can_delete: boolean; is_editable: boolean; privacy: string; title?: string | undefined; description?: string | undefined; type?: string | undefined; }; menu: import("../helpers.js").YTNode; endpoint?: NavigationEndpoint; messages: ObservedArray; constructor(actions: Actions, data: ApiResponse | IBrowseResponse, already_parsed?: boolean); get items(): ObservedArray; getContinuation(): Promise; }