import * as z from "zod"; export type RemoveTopicRequest = { apiKey: string; apiUsername: string; id: string; }; /** @internal */ export declare const RemoveTopicRequest$inboundSchema: z.ZodType; /** @internal */ export type RemoveTopicRequest$Outbound = { "Api-Key": string; "Api-Username": string; id: string; }; /** @internal */ export declare const RemoveTopicRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RemoveTopicRequest$ { /** @deprecated use `RemoveTopicRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RemoveTopicRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RemoveTopicRequest$Outbound` instead. */ type Outbound = RemoveTopicRequest$Outbound; } //# sourceMappingURL=removetopic.d.ts.map