import * as React from 'react'; import { IDiv } from '../../interfaces'; interface PanelHeaderPRops extends IDiv { /** * If true, header icon will be rotating */ active?: boolean; /** * If true, panel can not be expand and header style changes to grayish color and not clickable */ disabled?: boolean; /** * If true, icon is not rendered */ noIcon?: boolean; /** * If true, can't change active panel with click to header */ unclickable?: boolean; /** * Callback function when header is clicked */ handleActive?: () => void; /** * Additional classes */ className?: string; } export declare class PanelHeader extends React.PureComponent { render(): JSX.Element; } export {};