import { Model } from '@loopback/repository'; export interface LocalUserEmailPasswordProfile { email: string; password: string; } export declare class LocalUserEmailPasswordProfileDto extends Model implements Omit { email: string; password: string; constructor(data?: Partial); } export interface LocalUserProfile { username?: string; phone?: string; email?: string; password?: string; } export declare class LocalUserProfileDto extends Model implements Omit { client_id: string; client_secret: string; username?: string; phone?: string; email?: string; password?: string; constructor(data?: Partial); }