export interface ConfirmOption { title: string; message: string; actions: { text: string; onClick: () => void; }[]; } /** * 显示确认框 * * @param option - 确认框配置 */ declare function showConfirm(option: ConfirmOption): void; export default showConfirm;