@bee-design/ui
Version:
Bee Design React UI Library.
14 lines (13 loc) • 508 B
TypeScript
import React from 'react';
import Split from './split';
import { ResizeBoxProps } from './interface';
import SplitGroup from './split-group';
export declare type DirectionType = 'left' | 'right' | 'top' | 'bottom';
declare const ResizeBoxComponent: React.ForwardRefExoticComponent<ResizeBoxProps & {
children?: React.ReactNode;
} & React.RefAttributes<unknown>> & {
Split: typeof Split;
SplitGroup: typeof SplitGroup;
};
export default ResizeBoxComponent;
export { ResizeBoxProps };