import { ListProps } from '../list/list'; /** * Props for the {@link ListBox} component. * * @category ListBox */ export type ListBoxProps = Omit; /** * **ListBox** — thin semantic wrapper over `List` that presets `variant="listbox"`. * * @remarks * Prefer using `List` with `variant="listbox"` directly when composing * with `Select` or other controlled parents. * * @example * ```tsx * * * * * ``` * * @category ListBox */ export declare const ListBox: (props: ListBoxProps) => import("react/jsx-runtime").JSX.Element;