import { type APIActionRowComponent, type APIButtonComponent, type APIComponentInActionRow } from "discord-api-types/v10"; /** * Creates an action row component * * Container to display a row of interactive components */ export declare function ActionRow(...components: (T extends APIButtonComponent ? APIButtonComponent : T)[]): APIActionRowComponent;