import type { SchemaModel } from "./rdf/schemaModel"; export type SearchResultKind = "entity" | "relation" | "property"; export interface SearchResult { id: string; kind: SearchResultKind; label: string; meta: string; ownerId?: string; } export declare function searchSchema(schema: SchemaModel, rawQuery: string, limit?: number): SearchResult[]; //# sourceMappingURL=search.d.ts.map