import React from 'react'; import { SelectValue } from './interface'; export interface ISelectOptionProps { disabled?: boolean; values?: any; value?: string | number; title?: string; children?: any; className?: string; index?: number; activeIndex?: number; style?: React.CSSProperties; isMultiple?: boolean; onChangeSelect?: (key: SelectValue, label: string | undefined, isSelected: boolean) => void; onChangeActiveIndex?: (index: any) => void; } declare const Option: React.ForwardRefExoticComponent>; export default Option;