10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import { FC } from 'react';
|
|
import { TabsProps } from 'antd';
|
|
import type { BoxPanelProps } from './components/boxPanel';
|
|
export interface BoxSelectTreeProps extends BoxPanelProps {
|
|
onTabChange?: (e: any) => void;
|
|
tabsProps?: TabsProps;
|
|
}
|
|
declare const BoxSelectTree: FC<BoxSelectTreeProps>;
|
|
export default BoxSelectTree;
|