/// export interface PopupBaseProps { children?: React.ReactNode; hide?: () => void; contentHeight?: number; visible?: boolean; } /** * 类似微信 picker 弹窗的动画效果都可以复用此类容器 * 其他特定类型的弹窗容器组件可以在此基础上封装,或者扩展实现 */ declare const PopupBase: { (props?: PopupBaseProps): import("react").JSX.Element; displayName: string; }; export default PopupBase;