export interface UserProfile { id: string; username?: string; email?: string; [prop: string]: any; } export { User, UserRelations, UserWithRelations, UserGroup, UserGroupRelations, UserGroupWithRelations, UserToGroup, UserToGroupRelations, UserToGroupWithRelations, UserGroupEndPointPermission, UserGroupEndPointPermissionRelations, UserGroupEndPointPermissionWithRelations, UserEndPointPermission, UserEndPointPermissionRelations, UserEndPointPermissionWithRelations, } from '../default-artifacts/models'; export { UserDataSource, } from '../default-artifacts/datasources'; export { UserRepository, UserGroupRepository, UserToGroupRepository, UserGroupEndPointPermissionRepository, UserEndPointPermissionRepository, } from '../default-artifacts/repositories'; export interface UserCredentials { login: string; password: string; } export declare const UserCredentialsSchema: { type: string; required: string[]; properties: { login: { type: string; format: string; }; password: { type: string; minLength: number; }; }; }; export declare const UserCredentialsRequestBody: { description: string; required: boolean; content: { 'application/json': { schema: { type: string; required: string[]; properties: { login: { type: string; format: string; }; password: { type: string; minLength: number; }; }; }; }; }; };