export interface LoginDto {
    walletAddress: string;
    signature: string;
}
export interface AuthResponse {
    accessToken: string;
    user: UserDto;
}
export interface UserDto {
    id: number;
    walletAddress: string;
    nonce: string;
    createdAt: Date;
    updatedAt: Date;
}
//# sourceMappingURL=auth.types.d.ts.map