export declare class Thumbnail {
    /**
     * The URL of the thumbnail
     * @example "https://lh3.googleusercontent.com/..."
     */
    url: string;
    /**
     * The width of the thumbnail
     * @example 60
     */
    width: number;
    /**
     * The height of the thumbnail
     * @example 60
     */
    height: number;
    constructor(data: any);
}
//# sourceMappingURL=Thumbnail.d.ts.map