import { z } from "zod"; export declare const _CreateUserSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; firstName: z.ZodString; lastName: z.ZodString; active: z.ZodOptional; githubId: z.ZodOptional; googleId: z.ZodOptional; avatar: z.ZodOptional; locale: z.ZodOptional; }, z.core.$strip>; export declare const RegisterUserSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; name: z.ZodString; inviteToken: z.ZodOptional; userLocale: z.ZodOptional; defaultOrganizationId: z.ZodOptional; defaultOrganizationRole: z.ZodOptional; emailVerificationDisabled: z.ZodOptional; emailContent: z.ZodOptional; turnstileToken: z.ZodOptional; }, z.core.$strip>; export declare const GetUserByIdSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const UpdateUserVerifyTokenSchema: z.ZodObject<{ userId: z.ZodString; verifyToken: z.ZodString; }, z.core.$strip>; export declare const GetUserByEmailSchema: z.ZodObject<{ email: z.ZodString; }, z.core.$strip>; export declare const CredentialLoginSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; backupCode: z.ZodOptional; totpCode: z.ZodOptional; }, z.core.$strip>; export declare const TokenLoginSchema: z.ZodObject<{ token: z.ZodString; }, z.core.$strip>;