import { YTNode, type ObservedArray } from '../helpers.js';
import { type RawNode } from '../index.js';
import Button from './Button.js';
export default class HorizontalButtonList extends YTNode {
    static type: string;
    items: ObservedArray<Button> | null;
    constructor(data: RawNode);
}
