import React from 'react'; export interface ConfirmDialogProps { title: string; message: string; onConfirm: (result: boolean) => void; } export declare const ConfirmDialog: React.FC;