import React, { RefObject, ReactElement } from 'react';
import { Props } from './ListBoxBase.types';
import { ListState } from '@react-stately/list';
export declare const ListBoxContext: React.Context<ListState<unknown>>;
declare const _default: <T>(props: Props<T> & {
    ref?: RefObject<HTMLUListElement>;
}) => ReactElement;
export default _default;
