import { Thumbnail } from "./Thumbnail";
export default class User {
    /**
     * The userName
     * @example "toto24"
     */
    name: string;
    /**
     * The YouTube Music user id
     * @example "UCRw0x9_EfawqmgDI2IgQLLg"
     */
    id: number;
    /**
     * Thumbnails of the user
     * @example
     * ```json
     * {
     * 	"url": "https://lh3.googleusercontent.com/...",
     * 		"width": 60,
     * 		"height": 60
     * 		}
     * 		```
     */
    thumbnails: Thumbnail;
    constructor(user: any);
}
//# sourceMappingURL=User.d.ts.map