import Base from '../Base';
import type User from './user/User';
import type Client from '../Client';
/**
 * Represents a user's avatar
 */
declare class Avatar extends Base {
    /**
     * The user this avatar belongs to
     */
    user: User;
    /**
     * The avatar's id
     */
    id: string;
    /**
     * The avatar's namespace (eg. "fortnite")
     */
    namespace: string;
    /**
     * @param client The main client
     * @param data The avatar's data
     * @param user The user this avatar belongs to
     */
    constructor(client: Client, data: any, user: User);
}
export default Avatar;
