import * as z from "zod/v3"; import { TriggerRecipientsTypeEnum } from "./triggerrecipientstypeenum.js"; export type TopicPayloadDto = { topicKey: string; type: TriggerRecipientsTypeEnum; /** * Optional array of subscriber IDs to exclude from the topic trigger */ exclude?: Array | undefined; }; /** @internal */ export type TopicPayloadDto$Outbound = { topicKey: string; type: string; exclude?: Array | undefined; }; /** @internal */ export declare const TopicPayloadDto$outboundSchema: z.ZodType; export declare function topicPayloadDtoToJSON(topicPayloadDto: TopicPayloadDto): string; //# sourceMappingURL=topicpayloaddto.d.ts.map