import React from 'react'; import { useTranslation } from 'react-i18next'; import { SingleLargePageParameters } from '../../../hooks/tools/singleLargePage/useSingleLargePageParameters'; interface SingleLargePageSettingsProps { parameters: SingleLargePageParameters; onParameterChange: (parameter: K, value: SingleLargePageParameters[K]) => void; disabled?: boolean; } const SingleLargePageSettings: React.FC = ({ parameters, onParameterChange, disabled = false }) => { const { t } = useTranslation(); return (

{t('pdfToSinglePage.description', 'This tool will merge all pages of your PDF into one large single page. The width will remain the same as the original pages, but the height will be the sum of all page heights.')}

); }; export default SingleLargePageSettings;