Files
2026-01-09 14:52:46 +00:00

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;