import React from 'react'; import type { I18nText, WorkAreaItem } from '../../types'; interface NewPeripheralInfoFieldsProps { workAreas: WorkAreaItem[]; workAreaId?: number; currentWorkAreaId?: number; getText: (key: string) => string; translation: (val?: I18nText) => string; } declare const NewPeripheralInfoFields: React.FC; export default NewPeripheralInfoFields;