import React from 'react'; import type { DeviceRow, I18nText } from '../../types'; import { DrawerTabKey } from './components/DrawerSidebar'; import './index.less'; interface DeviceDetailDrawerProps { open: boolean; record?: DeviceRow; initialTab?: DrawerTabKey; getText: (key: string) => string; translation: (val?: I18nText) => string; onClose: () => void; onEdit: () => void; onDelete: () => void; onConnectionsChanged?: () => void; } declare const DeviceDetailDrawer: React.FC; export default DeviceDetailDrawer;