import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type Thumbnail = { url?: string | undefined; width?: number | undefined; height?: number | undefined; }; /** @internal */ export declare const Thumbnail$inboundSchema: z.ZodType; export declare function thumbnailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=thumbnail.d.ts.map