export declare class NecAlertData { /** * Alert标题 */ title: string; /** * Alert正文 */ text: string; /** * 确定的回调函数 */ accept: Function; /** * 取消的回调函数 */ reject: Function; /** * 确定按钮的文本 */ acceptText?: string; /** * 取消按钮的文本 */ rejectText?: string; }