import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ActivityTopicDto = { /** * Internal Topic ID of the notification */ topicId: string; /** * Topic Key of the notification */ topicKey: string; }; /** @internal */ export declare const ActivityTopicDto$inboundSchema: z.ZodType; export declare function activityTopicDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitytopicdto.d.ts.map