/** * @jsxRuntime classic * @jsx jsx */ import { type HeadingItemProps as MenuHeadingItemProps } from '@atlaskit/menu'; export interface HeadingItemProps extends MenuHeadingItemProps { } /** * __Heading item__ * * Available for advanced use cases, for most situations providing a `title` to `section` should be enough. * */ declare const HeadingItem: (props: HeadingItemProps) => JSX.Element | null; export default HeadingItem;