import React from 'react'; export interface IStudioPanelProps { style?: React.CSSProperties; className?: string; logo?: React.ReactNode; actions?: React.ReactNode; prefixCls?: string; theme?: string; } export declare const StudioPanel: React.FC;