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