import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AnswerLike, AnswerLike$Outbound } from "./answerlike.js"; export type AnswerLikes = { likedBy: Array; /** * Whether the user in context liked the answer. */ likedByUser: boolean; /** * The total number of likes for the answer. */ numLikes: number; }; /** @internal */ export declare const AnswerLikes$inboundSchema: z.ZodType; /** @internal */ export type AnswerLikes$Outbound = { likedBy: Array; likedByUser: boolean; numLikes: number; }; /** @internal */ export declare const AnswerLikes$outboundSchema: z.ZodType; export declare function answerLikesToJSON(answerLikes: AnswerLikes): string; export declare function answerLikesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=answerlikes.d.ts.map