import { YwNoticeProps } from '../../types'; declare function YwNotice(props: YwNoticeProps): JSX.Element; declare namespace YwNotice { var defaultProps: { type: string; icon: any; content: string; title: string; closeable: boolean; btnText: string; onClick: () => void; onClose: () => void; }; } export default YwNotice;