import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IconConfig } from "./iconconfig.js"; export type ResultsDescription = { /** * Textual description of the results. Can be shown at the top of SERP, e.g. 'People who write about this topic' for experts in people tab. */ text?: string | undefined; /** * Defines how to render an icon */ iconConfig?: IconConfig | undefined; }; /** @internal */ export declare const ResultsDescription$inboundSchema: z.ZodType; export declare function resultsDescriptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=resultsdescription.d.ts.map