/** * 请在 /packages/pandora/src/index.ts 中导入该组件 */ import React from 'react'; import Split from './split'; import { type ResizeBoxProps } from './interface'; import SplitGroup from './split-group'; export declare type DirectionType = 'left' | 'right' | 'top' | 'bottom'; declare const ResizeBoxComponent: React.ForwardRefExoticComponent> & { Split: typeof Split; SplitGroup: typeof SplitGroup; }; export default ResizeBoxComponent; export { ResizeBoxProps };