"use client" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Search } from "lucide-react" interface ContentLibrarySelectionProps { selectedLibraries: string[] onChange: (libraries: string[]) => void onComplete: () => void onPrev: () => void } export function ContentLibrarySelection({ selectedLibraries, onChange, onComplete, onPrev, }: ContentLibrarySelectionProps) { return (