/** * ConfirmDialog Component * * Yes/no confirmation dialog using DialogOverlay for consistent visual chrome. * * @since v2.7.4 - Refactored to use DialogOverlay and DialogButton */ import type React from 'react'; export interface ConfirmDialogProps { title: string; message?: string; onConfirm: () => void; onCancel: () => void; confirmLabel?: string; cancelLabel?: string; isActive?: boolean; destructive?: boolean; } export declare function ConfirmDialog({ title, message, onConfirm, onCancel, confirmLabel, cancelLabel, isActive, destructive }: ConfirmDialogProps): React.ReactElement; //# sourceMappingURL=ConfirmDialog.d.ts.map