UNPKG

@formant/ava-react

Version:

React components of AVA.

9 lines (8 loc) 415 B
import React from 'react'; import type { HeadlineSpec } from '@formant/ava'; import type { ExtensionProps, ParagraphEvents, ThemeStylesProps } from '../types'; type HeadlineProps = Pick<ExtensionProps, 'pluginManager'> & ThemeStylesProps & ParagraphEvents & { spec: HeadlineSpec; }; export declare function Headline({ spec, pluginManager, size, theme, ...events }: HeadlineProps): React.JSX.Element; export {};