import * as z from 'zod'; export declare const BackupDestinationInputSchema: z.ZodObject<{ id: z.ZodNumber; userId: z.ZodNumber; path: z.ZodString; isActive: z.ZodBoolean; createdAt: z.ZodDate; user: z.ZodUnknown; }, "strict", z.ZodTypeAny, { path: string; id: number; createdAt: Date; userId: number; isActive: boolean; user?: unknown; }, { path: string; id: number; createdAt: Date; userId: number; isActive: boolean; user?: unknown; }>; export type BackupDestinationInputType = z.infer; //# sourceMappingURL=BackupDestination.input.d.ts.map