User

interface User {
firstName: string;
lastName: string;
image: string | null;
username: string;
[otherProps: string]: any;
};