import React from 'react'; import type { I18nText, LinkedDeviceItem } from '../../types'; import './index.less'; interface DeleteProfileModalProps { open: boolean; loading: boolean; submitting: boolean; profileName: string; linkedDevices: LinkedDeviceItem[]; translation: (val: I18nText) => string; getText: (key: string) => string; onClose: () => void; onConfirm: () => void; variant?: string; } declare const DeleteProfileModal: React.FC; export default DeleteProfileModal;