import React from 'react'; import { TabBarTabsNodeProps } from './iTabs'; export default class TabBarTabsNode extends React.Component { static defaultProps: { panels: never[]; clsPrefix: never[]; tabBarGutter: null; onTabClick: () => void; saveRef: () => void; }; constructor(props: TabBarTabsNodeProps); onTabClick(key: string): void; onDragEnd: (result: object) => void; iseditable: (v: undefined | boolean) => "noClose" | undefined; handleItems: () => any[]; render(): JSX.Element; }