import { ParkingHistory } from '../../parking/entities/parking-history.entity'; export declare class User { id: string; email: string; name: string; password: string; preferences: Record; isActive: boolean; createdAt: Date; parkingHistory: ParkingHistory[]; toJSON(): Omit; }