import React from 'react'; import type { HeadingParagraphSpec } from '@antv/ava'; import type { ExtensionProps, PhraseEvents, ThemeStylesProps } from '../types'; type HeadingProps = ExtensionProps & ThemeStylesProps & PhraseEvents & { spec: HeadingParagraphSpec; }; export declare function Heading({ spec, theme, size, palette, pluginManager, ...events }: HeadingProps): React.JSX.Element; export {};