import React, { type ReactNode } from 'react'; import { useId } from '../../hooks/useId'; import styles from './ListBox.module.css'; import { classNames } from '../../utils'; export type EmptyListBoxProps = { title: string; children?: ReactNode; className?: string; }; export function EmptyListBox({ title, children, className, ...rest }: EmptyListBoxProps) { const descriptionId = useId(); return ( ); }