import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ActorTypeEnum } from "./actortypeenum.js"; export type ActorFeedItemDto = { /** * The data associated with the actor, can be null if not applicable. */ data: string | null; /** * The type of the actor, indicating the role in the notification process. */ type: ActorTypeEnum; }; /** @internal */ export declare const ActorFeedItemDto$inboundSchema: z.ZodType; export declare function actorFeedItemDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=actorfeeditemdto.d.ts.map