import type React from "react"; import type { OptionBase } from "./types"; interface OptionItemProps { val: string; flatOptionsMap: Map; renderOption: (val: string) => React.ReactNode; testIdPrefix?: string; } export declare function OptionItem({ val, flatOptionsMap, renderOption, testIdPrefix, }: OptionItemProps): import("react/jsx-runtime").JSX.Element; export {};