import { TOption } from './SelectInput';
type OptionProps<ValueType extends string | number> = {
    option: TOption<ValueType>;
    onClick: (option: TOption<ValueType>) => void;
};
declare function Option<ValueType extends string | number>({ option, onClick }: OptionProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export default Option;
