import React from 'react'; import { SelectableOption } from './Select'; import './SelectOption.scss'; export type SelectOptionProps = Omit, 'onClick'> & { id?: string; active: boolean; selected: boolean; option: SelectableOption; onClick: (option: SelectableOption) => void; dataTestId?: string; }; export declare const SelectOption: React.FC;