import React from 'react'; import { IVirtualBoxProps } from '@xformily/react-schema-renderer'; import { TabPaneProps } from 'antd/lib/tabs'; import { IFormTab } from '../types'; declare enum StateMap { ON_FORM_TAB_ACTIVE_KEY_CHANGE = "onFormTabActiveKeyChange" } declare const EffectHooks: { onTabActiveKeyChange$: (...args: any[]) => import("rxjs/internal/Observable").Observable<{ name?: string; path?: string; value?: any; }>; }; declare type ExtendsProps = StateMap & typeof EffectHooks & { TabPane: React.FC; }; export declare const FormTab: React.FC> & ExtendsProps; export default FormTab;