import { default as React } from 'react'; import { ConfirmationItem } from '../Button/ButtonComponents/ConfirmationButton'; export type ConfirmationPopoverContentProps = Pick & { /** Optional prop to add a test id to the ConfirmationPopoverContent for QA testing */ qaTestId?: string; }; declare const ConfirmationPopoverContent: ({ type, header, body, cancelCallout, confirmCallout, confirmButtonText, cancelButtonText, qaTestId, }: ConfirmationPopoverContentProps) => React.JSX.Element; export default ConfirmationPopoverContent;