import * as z from "zod"; export type BookmarkTopicRequest = { apiKey: string; apiUsername: string; id: string; }; /** @internal */ export declare const BookmarkTopicRequest$inboundSchema: z.ZodType; /** @internal */ export type BookmarkTopicRequest$Outbound = { "Api-Key": string; "Api-Username": string; id: string; }; /** @internal */ export declare const BookmarkTopicRequest$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 BookmarkTopicRequest$ { /** @deprecated use `BookmarkTopicRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BookmarkTopicRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BookmarkTopicRequest$Outbound` instead. */ type Outbound = BookmarkTopicRequest$Outbound; } //# sourceMappingURL=bookmarktopic.d.ts.map