import { BoxBaseProps } from '../base/boxBase'; /** * Props for {@link Article}. * Extends {@link BoxBaseProps} except for `elementClass` and `component`. * * @category Box */ export type ArticleProps = Omit; /** * Semantic layout wrapper for the native `
` element. * Intended for self-contained content units composed of Sections and optional Aside. * * Built on top of {@link BoxBase}, inheriting its layout and styling props. * Defaults to a column layout (`direction="col"`) and applies * the semantic UUI class `"uui-article"`. * * @function * @example *
*
*
* * @category Box */ export declare const Article: import('react').ForwardRefExoticComponent>;