import { ListboxOptionProps } from '@headlessui/react'; import { ReactElement } from 'react'; export type SelectOptionProps = Omit, 'prefix' | 'value'> & { /** * Render item as active */ active?: boolean; value: string; prefix?: ReactElement; }; export declare const SelectOption: ({ active, prefix, children, ...props }: SelectOptionProps) => import("react/jsx-runtime").JSX.Element;