import * as z from "zod/v3"; export type CreateUpdateTopicRequestDto = { /** * The unique key identifier for the topic. The key must contain only alphanumeric characters (a-z, A-Z, 0-9), hyphens (-), underscores (_), colons (:), or be a valid email address. */ key: string; /** * The display name for the topic */ name?: string | undefined; }; /** @internal */ export type CreateUpdateTopicRequestDto$Outbound = { key: string; name?: string | undefined; }; /** @internal */ export declare const CreateUpdateTopicRequestDto$outboundSchema: z.ZodType; export declare function createUpdateTopicRequestDtoToJSON(createUpdateTopicRequestDto: CreateUpdateTopicRequestDto): string; //# sourceMappingURL=createupdatetopicrequestdto.d.ts.map