import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person, Person$Outbound } from "./person.js"; export type Reaction = { type?: string | undefined; /** * The count of the reaction type on the document. */ count?: number | undefined; reactors?: Array | undefined; /** * Whether the user in context reacted with this type to the document. */ reactedByViewer?: boolean | undefined; }; /** @internal */ export declare const Reaction$inboundSchema: z.ZodType; /** @internal */ export type Reaction$Outbound = { type?: string | undefined; count?: number | undefined; reactors?: Array | undefined; reactedByViewer?: boolean | undefined; }; /** @internal */ export declare const Reaction$outboundSchema: z.ZodType; export declare function reactionToJSON(reaction: Reaction): string; export declare function reactionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reaction.d.ts.map