import React from "react";
export declare function ConfirmationDialog({ open, onAccept, onCancel, title, loading, body }: {
    open: boolean;
    onAccept: () => void;
    onCancel: () => void;
    loading?: boolean;
    title: React.ReactNode;
    body?: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
