import { AriaFocusRingProps, AriaOptionProps } from 'react-aria'; import { ListState, Node } from 'react-stately'; interface OptionProps extends AriaOptionProps, AriaFocusRingProps { item: Node; state: ListState; } declare const ListBoxOption: ({ item, state, ...props }: OptionProps) => import("react/jsx-runtime").JSX.Element; export { ListBoxOption }; //# sourceMappingURL=ListBoxOption.d.ts.map