import { ThoughtChainItem } from './Item'; import { ThoughtChainList } from './List'; export type { ThoughtChainItemType, ThoughtChainProps } from './type'; type ThoughtChainType = typeof ThoughtChainList & { Item: typeof ThoughtChainItem; }; declare const ThoughtChain: ThoughtChainType; export { ThoughtChain }; export default ThoughtChain;