import { ColorModesEnum } from '../../../ThemeProvider'; import { Themes } from '../helpers'; type ArticleProps = { heroTitle?: string; lede?: string; content: 'real-world' | 'system'; gridOverlay?: boolean; colorMode?: ColorModesEnum; accentColor: Themes; isLightHero?: boolean; }; export declare function Article({ heroTitle, lede, content, gridOverlay, colorMode, isLightHero, accentColor, ...args }: ArticleProps): import("react/jsx-runtime").JSX.Element; export {};