import { z } from 'zod/v3';
export declare const listUsersSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const getUserSchema: z.ZodObject<{
    user_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    user_id: number;
}, {
    user_id: number;
}>;
export declare const getCurrentUserSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const inviteUserSchema: z.ZodObject<{
    email: z.ZodString;
    do_not_send_confirmation_email: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
    email: string;
    do_not_send_confirmation_email?: number | undefined;
}, {
    email: string;
    do_not_send_confirmation_email?: number | undefined;
}>;
//# sourceMappingURL=user-schemas.d.ts.map