import * as React from 'react'; import { HeadingTagName } from '../../types'; export interface Props { /** * The element name to use for the heading * @default 'h2' */ element?: HeadingTagName; /** The content to display inside the heading */ children?: React.ReactNode; } export default function Heading({ element: Element, children }: Props): JSX.Element;