import React from 'react';
import EditorComponent from '../../EditorComponent';
import { SectionProps, SectionState } from './interfaces';
export * from './interfaces';
declare class Section<P extends SectionProps = SectionProps, S extends SectionState = SectionState> extends EditorComponent<P, S> {
    static Name: "Section";
    renderPanelView(content?: React.ReactNode): React.ReactNode;
}
export default Section;
