import React from 'react'; import type { DeviceRow } from '../../types'; interface DeleteDeviceModalProps { open: boolean; variant?: string; record?: DeviceRow; submitting: boolean; getText: (key: string) => string; onCancel: () => void; onConfirm: () => void; } declare const DeleteDeviceModal: React.FC; export default DeleteDeviceModal;