import { AlertProps } from 'naive-ui'; import { BaseCon, IConRightRenderOp, IConRightRenderItemOp } from './BaseCon'; /** * 提示 */ export declare class Alert extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Alert; props: { bordered: boolean; closable: boolean; showIcon: boolean; title: string; type: AlertProps["type"]; content: string; }; renderRaw(): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp[]; }