import * as React from 'react'; import './_style/index.less'; export interface NoticeBarProps { prefixCls?: string; title?: string; height?: number; showPop?: boolean; confirm?: any; cancel?: any; className?: string; contentCls?: string; style?: React.CSSProperties; children?: React.ReactNode; confirmEvent?: any; cancelEvent?: any; } declare const Popup: React.ForwardRefExoticComponent>; export default Popup;