9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
import Panel from './Panel';
|
|
import SplitterComp from './Splitter';
|
|
export type { SplitterProps } from './interface';
|
|
type CompoundedComponent = typeof SplitterComp & {
|
|
Panel: typeof Panel;
|
|
};
|
|
declare const Splitter: CompoundedComponent;
|
|
export default Splitter;
|