import * as z from "zod/v3"; import { NovuError } from "./novuerror.js"; export type TopicResponseDtoData = { /** * The identifier of the topic */ id: string; /** * The unique key of the topic */ key: string; /** * The name of the topic */ name?: string | undefined; /** * The date the topic was created */ createdAt?: string | undefined; /** * The date the topic was last updated */ updatedAt?: string | undefined; }; export declare class TopicResponseDto extends NovuError { /** * The identifier of the topic */ id: string; /** * The unique key of the topic */ key: string; /** * The date the topic was created */ createdAt?: string | undefined; /** * The date the topic was last updated */ updatedAt?: string | undefined; /** The original data that was passed to this error instance. */ data$: TopicResponseDtoData; constructor(err: TopicResponseDtoData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const TopicResponseDto$inboundSchema: z.ZodType; //# sourceMappingURL=topicresponsedto.d.ts.map