import { type ObservedArray, YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import ButtonView from './ButtonView.js'; export type ActionRow = { actions: ObservedArray; }; export default class FlexibleActionsView extends YTNode { static type: string; actions_rows: ActionRow[]; style: string; constructor(data: RawNode); }