import React from 'react'; export interface VisibleProps { /** * 控制显示隐藏子组件 */ visible: boolean; /** * 分割行组件,包含分割行和分割行下方内容 * @deprecated 本API不再使用 */ componment: React.Component | React.FunctionComponent; /** * 是否传递visible属性至子组件,默认为`true` */ transferProps: boolean; } /** * 显示隐藏控制组件 */ export declare const Visible: ({ visible, children, componment, transferProps }: React.PropsWithChildren>) => JSX.Element; export default Visible;