import React from "react"; interface ConfirmDialogProps { title: string; message: string; onConfirm: () => void; onCancel: () => void; danger?: boolean; } export declare function ConfirmDialog({ title, message, onConfirm, onCancel, danger }: ConfirmDialogProps): React.JSX.Element; export {};