import React, { Component } from 'react'; /** * A component that renders all plugin fills in a hidden div. */ export declare class PluginArea extends Component<{}, { plugins: { [key: string]: any; }; }> { constructor(args: any); getCurrentPluginsState(): { plugins: { Plugin: any; context: { name: string; icon: string | Function | React.ComponentElement; }; }[]; }; componentDidMount(): void; componentWillUnMount(): void; setPlugins(): void; render(): React.JSX.Element; }