import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TopicsControllerGetTopicRequest = { /** * The key identifier of the topic */ topicKey: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type TopicsControllerGetTopicResponse = { headers: { [k: string]: Array; }; result: components.TopicResponseDto; }; /** @internal */ export type TopicsControllerGetTopicRequest$Outbound = { topicKey: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const TopicsControllerGetTopicRequest$outboundSchema: z.ZodType; export declare function topicsControllerGetTopicRequestToJSON(topicsControllerGetTopicRequest: TopicsControllerGetTopicRequest): string; /** @internal */ export declare const TopicsControllerGetTopicResponse$inboundSchema: z.ZodType; export declare function topicsControllerGetTopicResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicscontrollergettopic.d.ts.map