declare type ConfirmModalProps = { title: string; message: string; onConfirm?: () => void; onAsyncConfirm?: () => Promise; variant?: 'danger' | 'warning' | 'success' | undefined; }; export declare function showConfirmAlert(props: ConfirmModalProps): void; export {};