import type { Key } from "react-aria-components" export interface SelectProps extends Omit, "onSelect"> { items: { label: string; value: Key }[] label: string name: string onSelect: (key: Key) => void placeholder?: string defaultSelectedKey: Key }