/** biome-ignore-all lint/a11y/useKeyWithMouseEvents: We know what we are doing */ import React from "react"; export interface ListboxOptionsProps extends Omit, "role" | "tabIndex" | "onMouseOver"> { children: React.ReactNode; setVirtuallyFocusedOptionId: (value: string) => void; } declare function ListboxOptions({ children, setVirtuallyFocusedOptionId, ...rest }: ListboxOptionsProps): React.JSX.Element; export { ListboxOptions };