/// import type { Device } from '@seamapi/types/connect'; import type { UseDevicesParams } from '../../../../lib/seam/devices/use-devices.js'; export type DeviceTableProps = Props & UseDevicesParams; interface Props { onBack: (() => void) | undefined; } interface DeviceRowProps { device: Device; onClick: () => void; } export declare function DeviceRow({ device, onClick, }: DeviceRowProps): JSX.Element | null; export {};