import * as z from "zod"; export type LogOutUserRequest = { id: number; }; /** * response */ export type LogOutUserResponseBody = { success: string; }; /** @internal */ export declare const LogOutUserRequest$inboundSchema: z.ZodType; /** @internal */ export type LogOutUserRequest$Outbound = { id: number; }; /** @internal */ export declare const LogOutUserRequest$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 LogOutUserRequest$ { /** @deprecated use `LogOutUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LogOutUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LogOutUserRequest$Outbound` instead. */ type Outbound = LogOutUserRequest$Outbound; } /** @internal */ export declare const LogOutUserResponseBody$inboundSchema: z.ZodType; /** @internal */ export type LogOutUserResponseBody$Outbound = { success: string; }; /** @internal */ export declare const LogOutUserResponseBody$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 LogOutUserResponseBody$ { /** @deprecated use `LogOutUserResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LogOutUserResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LogOutUserResponseBody$Outbound` instead. */ type Outbound = LogOutUserResponseBody$Outbound; } //# sourceMappingURL=logoutuser.d.ts.map