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