import * as z from 'zod'; export declare const UserInputSchema: z.ZodObject<{ id: z.ZodNumber; username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; usbBackupEnabled: z.ZodBoolean; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; notifications: z.ZodArray; cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; }, "strict", z.ZodTypeAny, { id: number; staff: unknown[]; claims: unknown[]; appointments: unknown[]; username: string; password: string; communications: unknown[]; autoBackupEnabled: boolean; usbBackupEnabled: boolean; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; }, { id: number; staff: unknown[]; claims: unknown[]; appointments: unknown[]; username: string; password: string; communications: unknown[]; autoBackupEnabled: boolean; usbBackupEnabled: boolean; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; }>; export type UserInputType = z.infer; //# sourceMappingURL=User.input.d.ts.map