import React from 'react'; import { EngineBaseProps } from '@lingxiteam/types'; import { TabsItemProps } from './PropsType'; interface TabPageProps { getEngineApis: EngineBaseProps['getEngineApis']; $$componentItem: EngineBaseProps['$$componentItem']; activeKey?: string; lcdpParentRenderId: string; item: TabsItemProps; index: number; reloadPageKey?: string; } declare const TabPage: React.FC; export default TabPage;