import * as React from 'react'; import { IContentType, IPane, IPaneContent } from '../types'; export interface IPaneHeaderButtonProps { pane: IPane; contentTypes: Array>; content: IPaneContent; setCurrentContent: (contentId: string) => void; removeContent: (contentId: string) => void; } declare class PaneHeaderButton extends React.Component> { handleOpen: (e: React.SyntheticEvent) => void; handleRemove: (e: React.SyntheticEvent) => void; render(): JSX.Element; } export default PaneHeaderButton;