// import { Method } from '@testing-library/react'; import React from 'react'; import { CloseIcon } from './Icons'; import { HtmlElementId } from './AppendEditor'; interface PrintDialogTypes { cancelText: string; confirmText: string; helpLink: string; onCancel: () => void; onConfirm: () => void; onUndo: () => void; title: string; } const PrintDialog: React.FC = ({ cancelText, confirmText, helpLink, onCancel, onConfirm, onUndo, title, }) => (

{title}

Need help deciding? Check out the{' '} documentation .

); export default PrintDialog;