import { LoadingState } from "@react-types/shared"; import React, { RefObject } from "react"; import { AriaListBoxOptions } from "react-aria"; import { ListState } from "react-stately"; type Props = AriaListBoxOptions & { listBoxRef?: RefObject; state: ListState; loadingState?: LoadingState; onLoadMore?: () => void; }; export declare const ListBox: (props: Props) => React.JSX.Element; export {};