@formant/ava-react
Version:
React components of AVA.
13 lines (12 loc) • 530 B
TypeScript
import React from 'react';
import type { SectionSpec } from '@formant/ava';
import type { ThemeStylesProps, ExtensionProps, SectionEvents } from '../types';
type SectionProps = ThemeStylesProps & ExtensionProps & SectionEvents & {
/**
* @description specification of section text spec
* @description.zh-CN Section 描述 json 信息
*/
spec: SectionSpec;
};
export declare function Section({ spec, size, theme, palette, pluginManager, showCollapse, ...events }: SectionProps): React.JSX.Element;
export {};