///
import { GroupOptionType, OptionType } from "../../../types";
type Props = {
options: Array;
onFilter?: (option: OptionType, searchKeyword: string) => boolean;
onChange?: (values: Array) => void;
};
export declare const isOption: (option: OptionType | GroupOptionType) => option is OptionType;
declare function OptionList({ options, onFilter, onChange }: Props): JSX.Element;
export default OptionList;