import * as z from "zod/v3"; export type SeenFeedbackInfo = { /** * The confidence of the user seeing the object is high because they explicitly interacted with it e.g. answer impression in SERP with additional user interaction. */ isExplicit?: boolean | undefined; }; /** @internal */ export type SeenFeedbackInfo$Outbound = { isExplicit?: boolean | undefined; }; /** @internal */ export declare const SeenFeedbackInfo$outboundSchema: z.ZodType; export declare function seenFeedbackInfoToJSON(seenFeedbackInfo: SeenFeedbackInfo): string; //# sourceMappingURL=seenfeedbackinfo.d.ts.map