import React from 'react'; import { ActionPopoverProps } from './ActionPopover'; export interface ConfirmationPopoverProps extends ActionPopoverProps { onConfirm: () => void; onCancel?: () => void; message?: string; } declare const ConfirmationPopover: React.FC; export { ConfirmationPopover };