import type { ListBoxVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import { ListBox as ListBoxPrimitive } from "react-aria-components/ListBox"; interface ListBoxRootProps extends ComponentPropsWithRef>, ListBoxVariants { className?: string; } declare function ListBoxRoot({ className, variant, ...props }: ListBoxRootProps): import("react/jsx-runtime").JSX.Element; export { ListBoxRoot }; export type { ListBoxRootProps };