import type { LabelKey, Option } from '../types'; interface Props { caseSensitive: boolean; filterBy: string[]; ignoreDiacritics: boolean; labelKey: LabelKey; multiple: boolean; selected: Option[]; text: string; } export default function defaultFilterBy(option: Option, props: Props): boolean; export {};