import React from 'react'; interface DiscordContainerProps { children: React.ReactNode; /** hex accent color e.g. "#5865f2" */ accentColor?: string | null; spoiler?: boolean; } /** * Discord Components V2 – Container * Renders a styled container block with optional left-side accent bar. */ declare function DiscordContainer({ children, accentColor, spoiler }: DiscordContainerProps): React.JSX.Element; export default DiscordContainer;