/// <reference types="react" />
import { formConfProps } from '../config/interface';
import './index.less';
import { TabPanelInfo } from './interface';
export type { TabPanelInfo } from './interface';
declare const TabPanel: import("react").ForwardRefExoticComponent<Omit<{
    id?: string | undefined;
    config?: formConfProps.TabPanel | undefined;
    setConfig?: ((config: formConfProps.TabPanel) => formConfProps.TabPanel) | undefined;
    confKey?: string[] | undefined;
    style?: import("react").CSSProperties | undefined;
    className?: any;
    onLoad?: (() => void) | undefined;
    initSc?: any;
    formConf?: any;
    disabledNotify?: boolean | undefined;
} & {
    formConf?: any;
} & TabPanelInfo & {
    id?: string | undefined;
}, "outRef"> & import("react").RefAttributes<import("ng-lib-tsx").ICurrentObject<any>>>;
export default TabPanel;
