import { SearchRequest, SearchResponse } from "./search_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * Search V2 (see PRD). Standalone service, mirroring data.v1's SearchService. * * @generated from service data.v2.SearchService */ export declare const SearchService: { readonly typeName: "data.v2.SearchService"; readonly methods: { /** * @generated from rpc data.v2.SearchService.Search */ readonly search: { readonly name: "Search"; readonly I: typeof SearchRequest; readonly O: typeof SearchResponse; readonly kind: MethodKind.Unary; }; }; };