import * as z from "zod/v3"; export type UserViewInfo = { /** * Unique Glean Document ID of the associated document. */ docId?: string | undefined; /** * Title of associated document. */ docTitle?: string | undefined; /** * URL of associated document. */ docUrl?: string | undefined; }; /** @internal */ export type UserViewInfo$Outbound = { docId?: string | undefined; docTitle?: string | undefined; docUrl?: string | undefined; }; /** @internal */ export declare const UserViewInfo$outboundSchema: z.ZodType; export declare function userViewInfoToJSON(userViewInfo: UserViewInfo): string; //# sourceMappingURL=userviewinfo.d.ts.map