import React from "react"; import { Label } from "../../../../typography"; import { useId } from "../../../../utils-external"; interface ListboxGroupProps { label: React.ReactNode; children: React.ReactNode; } function ListboxGroup({ label, children }: ListboxGroupProps) { const labelId = useId(); return (