declare type IFilterOption = boolean | ((option: any, keyword: string) => boolean); declare const useFilterOptions: (options: any[], searchValue?: string | string[], filterOption?: IFilterOption, checkStrictly?: boolean) => any[]; export { useFilterOptions };