import * as z from "zod/v3"; import * as components from "../components/index.js"; export type SearchRequest = { /** * The client's preferred locale in rfc5646 format (e.g. `en`, `ja`, `pt-BR`). If omitted, the `Accept-Language` will be used. If not present or not supported, defaults to the closest match or `en`. */ locale?: string | undefined; /** * Search request */ searchRequest: components.SearchRequest; }; /** @internal */ export type SearchRequest$Outbound = { locale?: string | undefined; SearchRequest: components.SearchRequest$Outbound; }; /** @internal */ export declare const SearchRequest$outboundSchema: z.ZodType; export declare function searchRequestToJSON(searchRequest: SearchRequest): string; //# sourceMappingURL=search.d.ts.map