import * as React from 'react'; import { Props } from './panel-types'; /** * Base container refactored from the original ColorAdmin theme panel. * @param children * @param className * @param loading * @param reload * @param onRefresh * @param onRemove * @param theme * @constructor */ declare const PanelBase: React.FC; /** * Simple header for the Panel * @param children * @param noButton * @constructor */ declare const PanelHeader: React.FC<{ noButton?: boolean; children?: React.ReactNode; }>; /** * Body wrapper for the panel. * @param className * @param children * @constructor */ declare const PanelBody: React.FC<{ children?: React.ReactNode; className?: string; }>; /** * Simple footer for the panel. * @param children * @param className * @constructor */ declare const PanelFooter: React.FC<{ children?: React.ReactNode; className?: string; }>; export { PanelBase, PanelHeader, PanelBody, PanelFooter };