import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Thumbnail = { /** * Photo id if the thumbnail is from splash. */ photoId?: string | undefined; /** * Thumbnail URL. This can be user provided image and/or from downloaded images hosted by Glean. */ url?: string | undefined; }; /** @internal */ export declare const Thumbnail$inboundSchema: z.ZodType; /** @internal */ export type Thumbnail$Outbound = { photoId?: string | undefined; url?: string | undefined; }; /** @internal */ export declare const Thumbnail$outboundSchema: z.ZodType; export declare function thumbnailToJSON(thumbnail: Thumbnail): string; export declare function thumbnailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=thumbnail.d.ts.map