import { default as React } from 'react'; import { ConfirmationPopoverContentProps } from '../../ConfirmationPopover/ConfirmationPopoverContent'; type MenuConfirmationProps = { confirmation: Omit; callout: (isConfirm: boolean) => void; /** Optional prop to add a test id to the MenuConfirmation for QA testing */ qaTestId?: string; }; declare const MenuConfirmation: ({ confirmation, callout, qaTestId, }: MenuConfirmationProps) => React.JSX.Element; export default MenuConfirmation;