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