import { Component } from "react"; import { TabPaneProps } from './iTabs'; declare class TabPane extends Component { static defaultProps: { placeholder: null; }; _isActived: boolean; render(): JSX.Element; } export default TabPane;