import React from 'react'; import type { ButtonComponent, ThumbnailComponent } from 'discord.js'; interface DiscordSectionProps { children: React.ReactNode; accessory?: ButtonComponent | ThumbnailComponent; id: number; } /** * Discord Components V2 – Section * A row with text content on the left and an optional accessory (thumbnail/button) on the right. */ declare function DiscordSection({ children, accessory, id }: DiscordSectionProps): React.JSX.Element; export default DiscordSection;