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 {};
