import React from "react"; import { StyledProps } from "../_type"; /** * 对话框内容展示 */ export interface ModalMessageProps extends StyledProps { /** * 要提示的消息 */ message?: React.ReactNode; /** * 可选的详细解释 */ description?: React.ReactNode; /** * 提示图标 */ icon?: "error" | "warning" | "pending" | "infoblue" | "success"; } export declare const ModalMessage: React.ForwardRefExoticComponent>;