import { DropdownOption } from '../interfaces';
export declare const matchesString: (value: string | undefined, searchText: string, strictMatching: boolean) => boolean;
export declare const filterOptions: (options: DropdownOption[], searchText: string, strictMatching?: boolean) => DropdownOption[];
