declare module 'wangeditor-for-react'; export enum Type { add, edit, } export type PostOrPutNoticeType = { id?: string; content: string; label: string; type: Type; imgUrl: string; }; export interface noticeModalProps { closeModal: () => void; curNoticeData: Record; visible: boolean; type: Type; GetNotice: () => void; }