import { default as React } from 'react';
import { ChopLogicSelectValue } from '../../../../models';
type Props = {
    value: ChopLogicSelectValue;
    selected: boolean;
    onSelect: (id: string) => void;
    onClear: () => void;
};
export declare const SelectOption: React.FC<Props>;
export {};
