export declare const currentUserBodySchema: { $id: string; type: string; nullable: boolean; properties: { username: { type: string; }; }; }; export declare const userBodySchema: { $id: string; type: string; nullable: boolean; properties: { username: { type: string; }; email: { type: string; }; blocked: { type: string; }; blockedReason: { type: string; }; blockedAt: { type: string; }; confirmed: { type: string; }; confirmedAt: { type: string; }; roles: { type: string; items: { type: string; }; }; }; }; export declare const userSchema: { $id: string; type: string; nullable: boolean; properties: { id: { type: string; }; externalId: { type: string; }; username: { type: string; }; email: { type: string; }; blocked: { type: string; }; blockedReason: { type: string; }; blockedAt: { type: string; }; confirmed: { type: string; }; confirmedAt: { type: string; }; roles: { type: string; items: { type: string; }; }; createdAt: { type: string; }; version: { type: string; }; updatedAt: { type: string; }; mfaEnabled: { type: string; }; }; }; export declare const isAdminSchema: { $id: string; type: string; nullable: boolean; properties: { isAdmin: { type: string; }; }; }; export declare const roleSchema: { $id: string; type: string; nullable: boolean; properties: { code: { type: string; }; name: { type: string; }; description: { type: string; }; }; }; //# sourceMappingURL=user.d.ts.map