import { SvgIconProps } from '@material-ui/core';
import React, { ReactElement } from 'react';
interface classes {
    root?: string;
    title?: string;
    contentContainer?: string;
}
interface SectionHeaderProps {
    title: string | ReactElement;
    iconComponent: React.JSXElementConstructor<SvgIconProps>;
    children: ReactElement;
    hideable?: boolean;
    hiddenInit?: boolean;
    classes?: classes;
}
declare const CollapsablePanel: {
    ({ title, iconComponent: IconComponent, children, hideable, hiddenInit, classes: classesAttr, }: SectionHeaderProps): React.ReactElement;
    defaultProps: {
        hideable: boolean;
        hiddenInit: boolean;
        classes: {
            root: string;
            title: string;
            contentContainer: string;
        };
    };
};
export default CollapsablePanel;
