import { RuntimeComponent } from '@easytwin/runtime'; import * as React from 'react'; type PreviewProps = { url: string; }; interface ComponentBasePanelProps { comp: RuntimeComponent; previewProps?: PreviewProps; titleExtra?: React.ReactNode; } export declare const ComponentBasePanel: React.FC>; export {};