import { CharacterEntity } from './character.entity';
import { KeyEntity } from './key.entity';
import { TeamSlots } from '../frontend';
export declare class UserEntity {
    id: number;
    walletAddress: string;
    nonce: string;
    team: TeamSlots;
    characters: CharacterEntity[];
    keys: KeyEntity[];
    createdAt: Date;
    updatedAt: Date;
    constructor(partial: Partial<UserEntity>);
}
//# sourceMappingURL=user.entity.d.ts.map