import React from 'react'; export interface SubContentProps { /** 显示的元素 */ displayElem?: any; /** subContent 的位置 */ position?: 'right' | 'left'; /** 隐藏的元素,当鼠标移动到显示的元素时出现 */ children?: any; } declare const SubContent: React.SFC; export default SubContent;