import React from 'react';
import { BoxProps } from '../Box';
/**
 * Increases the heading level of all `Heading` components inside it by 1.
 *
 * **NOTE**: this component is functionally the same as `<Section />`, but semantically
 * it renders an `<article>` tag instead of a `<section>` tag.
 */
export declare const Article: React.FC<BoxProps<'article'>>;
export default Article;
