"use client" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Search } from "lucide-react" interface DeviceSelectionProps { selectedDevices: string[] onChange: (devices: string[]) => void onNext: () => void onPrev: () => void } export function DeviceSelection({ selectedDevices, onChange, onNext, onPrev }: DeviceSelectionProps) { return (