import React from 'react'; export interface NoticeMessageBodyProps { message?: string; time: number; type?: 'notice' | 'recall'; noticeType: 'recall' | 'pin' | 'unpin'; ext?: Record; } export declare class NoticeMessageBody { id: string; message?: string; time: number; type: 'notice' | 'recall' | 'notice'; ext?: Record; noticeType: 'recall' | 'pin' | 'unpin' | 'notice'; constructor(props: NoticeMessageBodyProps); } export interface NoticeMessageProps { prefix?: string; className?: string; noticeMessage: NoticeMessageBody; style?: React.CSSProperties; } declare const NoticeMessage: (props: NoticeMessageProps) => import("react/jsx-runtime").JSX.Element; export { NoticeMessage };