import { type TuiHandler, type TuiIdentityMatcher } from '@taiga-ui/cdk/types'; /** * Default handler for matching stringified version of an item and a search query * @param item arbitrary element to match with a string * @param search search query * @param stringify handler to turn item into a string */ export declare const TUI_DEFAULT_MATCHER: (item: T, search: string, stringify?: TuiHandler) => boolean; /** * Default handler for strict matching stringified version of an item and a search query * @param item arbitrary element to match with a string * @param search search query * @param stringify handler to turn item into a string */ export declare const TUI_STRICT_MATCHER: (item: T, search: string, stringify?: TuiHandler) => boolean; /** * Default handler to match equality of two elements * ATTENTION: considers two empty arrays equal * * @param item1 first element * @param item2 second element */ export declare const TUI_DEFAULT_IDENTITY_MATCHER: TuiIdentityMatcher;