import * as React from 'react'; import { DockContext, TabPaneCache } from "./DockData"; import { TabPaneProps } from "@rc-component/tabs/lib/TabPanelList/TabPane"; interface DockTabPaneProps extends TabPaneProps { cacheId?: string; cached: boolean; } export default class DockTabPane extends React.PureComponent { static contextType: React.Context; context: DockContext; _ref: HTMLDivElement; getRef: (r: HTMLDivElement) => void; updateCache(): void; visited: boolean; _cache: TabPaneCache; render(): React.JSX.Element; componentDidMount(): void; componentDidUpdate(prevProps: Readonly, prevState: Readonly, snapshot?: any): void; componentWillUnmount(): void; } export {};