import type { DOMRenderProps } from "../../utils/dom"; import type { ListBoxItemVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import type { ListBoxItemRenderProps } from "react-aria-components/ListBox"; import React from "react"; import { ListBoxItem as ListBoxItemPrimitive } from "react-aria-components/ListBox"; interface ListBoxItemRootProps extends ComponentPropsWithRef, ListBoxItemVariants { className?: string; } declare const ListBoxItemRoot: ({ children, className, variant, ...props }: ListBoxItemRootProps) => import("react/jsx-runtime").JSX.Element; interface ListBoxItemIndicatorProps extends DOMRenderProps { children?: React.ReactNode | ((props: ListBoxItemRenderProps) => React.ReactNode); className?: string; } declare const ListBoxItemIndicator: ({ children, className, ...props }: ListBoxItemIndicatorProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { ListBoxItemRoot, ListBoxItemIndicator }; export type { ListBoxItemRootProps, ListBoxItemIndicatorProps };