import * as React from "react";
import type { Props, Option } from "../types";
interface InputSelectOptionProps {
    id: Props["id"];
    ref: React.Ref<HTMLDivElement>;
    active: boolean;
    isSelected: boolean;
    title: Option["title"];
    description: Option["description"];
    prefix: Option["prefix"];
    onClick: (ev: React.SyntheticEvent) => void;
}
declare const InputSelectOption: ({ active, id, onClick, isSelected, title, description, prefix, ref, }: InputSelectOptionProps) => React.JSX.Element;
export default InputSelectOption;
//# sourceMappingURL=index.d.ts.map