import { Button, JsonConvertable } from "../index.js"; import { APIActionRowComponent, APIButtonComponent, APISelectMenuComponent } from "discord-api-types/v10"; declare type ComponentUnion = Button | APIButtonComponent | APISelectMenuComponent; export declare class ActionRow extends JsonConvertable { data: APIActionRowComponent; setComponents(components: ComponentUnion[]): this; addComponent(component: ComponentUnion): this; addComponents(components: ComponentUnion[]): this; toJson(): APIActionRowComponent; } export {};