import { type RawNode } from '../index.js'; import Text from './misc/Text.js'; import { type ObservedArray, YTNode } from '../helpers.js'; import SubFeedOption from './SubFeedOption.js'; export default class SubFeedSelector extends YTNode { static type: string; title: Text; options: ObservedArray; constructor(data: RawNode); }