export function buildSearchSchema(options: { modelSchema: Schema; maxItems?: number | undefined; }): { jsonSchema: object; fieldNames: string[]; findOptionNames: string[]; operatorTypes: Record; }; export type Schema = import("../Schema.js").Schema;