import { DataItem } from '@refinitiv-ui/utils/collection.js'; import type { ItemData } from '../../item'; import type { ComboBox } from '../index'; import type { ComboBoxFilter } from './types'; /** * Default filter used by combo box * @param el ComboBox instance to filter * @returns Filter accepting an item */ export declare const createDefaultFilter: (el: ComboBox) => ComboBoxFilter;