import React from 'react'; import './index.scss'; export interface ISection { id: number; element: JSX.Element; } export interface IPanelHeaderProps { title?: string; info?: string; } export interface IPanelBodyProps { bodyClassName?: string; } export interface IPanelProps { sections: ISection[]; className?: string; } export declare type TProps = IPanelProps & IPanelHeaderProps & IPanelBodyProps; declare const Panel: React.FC; export { Panel };