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