import type { APIMessageActionRowComponent, ComponentType } from '../types'; import { BaseComponent } from './BaseComponent'; import type { ActionRowMessageComponents } from './index'; export declare class MessageActionRowComponent extends BaseComponent { private ComponentsFactory; constructor(data: { type: ComponentType.ActionRow; components: APIMessageActionRowComponent[]; }); get components(): T[]; }