import * as React from "react"; import { PanelBarProps } from "./PropsType"; export default class PanelBar extends React.Component { static defaultProps: { prefixCls: string; mode: string; onLeftClick: () => void; }; render(): JSX.Element; }