interface ActionConfirmationDialogProps {
    isOpen: boolean;
    onClose: () => void;
    onConfirm: () => void;
    title: string;
    message: string;
    confirmText: string;
    cancelText: string;
}
export declare function ActionConfirmationDialog({ isOpen, onClose, onConfirm, title, message, confirmText, cancelText, }: ActionConfirmationDialogProps): any;
export {};
