import React from 'react'; import type { DeviceBrandItem, DeviceModelItem, I18nText } from '../../types'; interface PickNewPeripheralStepProps { loading: boolean; models: DeviceModelItem[]; brands: DeviceBrandItem[]; getText: (key: string) => string; translation: (val?: I18nText) => string; onSelect: (model: DeviceModelItem) => void; } declare const PickNewPeripheralStep: React.FC; export default PickNewPeripheralStep;