import * as z from "zod/v3"; export type TopicSubscriberIdentifierDto = { /** * Unique identifier for this subscription */ identifier: string; /** * The subscriber ID */ subscriberId: string; /** * The name of the subscription */ name?: string | undefined; }; /** @internal */ export type TopicSubscriberIdentifierDto$Outbound = { identifier: string; subscriberId: string; name?: string | undefined; }; /** @internal */ export declare const TopicSubscriberIdentifierDto$outboundSchema: z.ZodType; export declare function topicSubscriberIdentifierDtoToJSON(topicSubscriberIdentifierDto: TopicSubscriberIdentifierDto): string; //# sourceMappingURL=topicsubscriberidentifierdto.d.ts.map