import * as React from 'react'; export interface PanelProps { name: string; tabs: string[]; onDelete: () => void; onCancel: () => void; onDone: () => void; } interface CatalogoPanelProps { content: any; props: PanelProps; } interface CatalogoPanelProps { } export default class CatalogoPanel extends React.Component { render(): JSX.Element; } export {};