import type { ComponentProps } from "react"; import { ListBoxItemIndicator, ListBoxItemRoot } from "./list-box-item"; export declare const ListBoxItem: (({ children, className, variant, ...props }: import("./list-box-item").ListBoxItemRootProps) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, variant, ...props }: import("./list-box-item").ListBoxItemRootProps) => import("react/jsx-runtime").JSX.Element; Indicator: ({ children, className, ...props }: import("./list-box-item").ListBoxItemIndicatorProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type ListBoxItem = { Props: ComponentProps; RootProps: ComponentProps; IndicatorProps: ComponentProps; }; export { ListBoxItemRoot, ListBoxItemIndicator }; export type { ListBoxItemRootProps, ListBoxItemRootProps as ListBoxItemProps, ListBoxItemIndicatorProps, } from "./list-box-item"; export { listboxItemVariants } from "@heroui/styles"; export type { ListBoxItemVariants } from "@heroui/styles";