import React from 'react'; import type { PeripheralDevice, PhysicalDeviceSelectState, SaasAppPeripheralProps } from '../types'; interface PhysicalDeviceSelectModalProps { state?: PhysicalDeviceSelectState; variant?: SaasAppPeripheralProps['variant']; submitting: boolean; getText: (key: string) => string; onClose: () => void; onSelect: (device: PeripheralDevice) => void; } declare const PhysicalDeviceSelectModal: React.FC; export default PhysicalDeviceSelectModal;