import * as z from "zod/v3"; /** * describes the interactions on the document */ export type DocumentInteractionsDefinition = { numViews?: number | undefined; numLikes?: number | undefined; numComments?: number | undefined; }; /** @internal */ export type DocumentInteractionsDefinition$Outbound = { numViews?: number | undefined; numLikes?: number | undefined; numComments?: number | undefined; }; /** @internal */ export declare const DocumentInteractionsDefinition$outboundSchema: z.ZodType; export declare function documentInteractionsDefinitionToJSON(documentInteractionsDefinition: DocumentInteractionsDefinition): string; //# sourceMappingURL=documentinteractionsdefinition.d.ts.map