import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SearchProviderInfo = { /** * Name of the search provider. */ name?: string | undefined; /** * URL to the provider's logo. */ logoUrl?: string | undefined; /** * URL template that can be used to perform the suggested search by replacing the {query} placeholder with the query suggestion. */ searchLinkUrlTemplate?: string | undefined; }; /** @internal */ export declare const SearchProviderInfo$inboundSchema: z.ZodType; /** @internal */ export type SearchProviderInfo$Outbound = { name?: string | undefined; logoUrl?: string | undefined; searchLinkUrlTemplate?: string | undefined; }; /** @internal */ export declare const SearchProviderInfo$outboundSchema: z.ZodType; export declare function searchProviderInfoToJSON(searchProviderInfo: SearchProviderInfo): string; export declare function searchProviderInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchproviderinfo.d.ts.map