import React from 'react';
import type { DeviceRow } from '../../../../model/types';
import './index.less';
interface InitCheckTakeoverModalProps {
open: boolean;
record?: DeviceRow;
currentVariant: string;
isPhoneVariant: boolean;
linkingDeviceId?: number;
getText: (key: string) => string;
onCancel: () => void;
onConfirm: (record: DeviceRow) => void;
}
/**
* 初始化校验失败后展示的 last used 接管弹窗。
*
* @example
*
*/
declare const InitCheckTakeoverModal: React.FC;
export default InitCheckTakeoverModal;