import React from 'react'; export interface IPanelProps { type?: 'default' | 'error' | 'success' | 'warning' | 'primary'; title?: string; description?: string; isIcon?: boolean; buttonList?: any; } declare const Panel: React.FC; export default Panel;