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