import React from 'react'; import { useTranslation } from 'react-i18next'; import { UnlockPdfFormsParameters } from '../../../hooks/tools/unlockPdfForms/useUnlockPdfFormsParameters'; interface UnlockPdfFormsSettingsProps { parameters: UnlockPdfFormsParameters; onParameterChange: (parameter: K, value: UnlockPdfFormsParameters[K]) => void; disabled?: boolean; } const UnlockPdfFormsSettings: React.FC = (_) => { const { t } = useTranslation(); return (

{t('unlockPDFForms.description', 'This tool will remove read-only restrictions from PDF form fields, making them editable and fillable.')}

); }; export default UnlockPdfFormsSettings;