import type { ICondition } from '@rapiq/core'; /** * The condition a bare search string becomes when a collection declares no * `queryFilters` hook: a substring match against `name` plus every extra * field the entity's schema allows (`displayName` today). * * A single field stays a plain `contains` rather than a one-armed `or`, * which would only add a compound wrapper to the query string. */ export declare function buildEntitySearchCondition(type: string, value: string): ICondition; //# sourceMappingURL=search.d.ts.map