index.d.ts 267 B

12345678
  1. import Panel from './Panel';
  2. import SplitterComp from './Splitter';
  3. export type { SplitterProps } from './interface';
  4. type CompoundedComponent = typeof SplitterComp & {
  5. Panel: typeof Panel;
  6. };
  7. declare const Splitter: CompoundedComponent;
  8. export default Splitter;