import { Component } from 'react'; export declare class SelectableList extends Component<{ className?: any; options?: any; searchValue?: any; onOptionClick?: any; renderOption?: any; height?: any; virtualizedProps?: any; rowHeight?: any; activeOptionIndex?: any; rootId?: any; showIcons?: any; singleSelection?: any; visibleOptions?: any; allowExclusions?: any; bordered?: any; }> { static defaultProps: { rowHeight: number; searchValue: string; }; rootId: any; constructor(props: any); render(): JSX.Element; onAddOrRemoveOption: (option: any) => void; onAddOption: (addedOption: any) => void; onRemoveOption: (removedOption: any) => void; onExcludeOption: (excludedOption: any) => void; }