import React from 'react'; import type { HeadlineSpec } from '@antv/ava'; import type { ExtensionProps, ParagraphEvents, ThemeStylesProps } from '../types'; type HeadlineProps = Pick & ThemeStylesProps & ParagraphEvents & { spec: HeadlineSpec; }; export declare function Headline({ spec, pluginManager, size, theme, ...events }: HeadlineProps): React.JSX.Element; export {};