import React from 'react'; export interface ChatNoticeProps { active?: boolean; message?: string; duration?: number; type?: `default` | 'success' | `fail`; manualRemove?: boolean; [key: string]: any; } declare const ChatNotice: (props: ChatNoticeProps) => React.JSX.Element; export default ChatNotice;