import { YTNode } from '../helpers.js';
import type { RawNode } from '../types/index.js';
export default class AnimatedThumbnailOverlayView extends YTNode {
    static type: string;
    thumbnail: {
        sources: {
            url: string;
            width: number;
            height: number;
        }[];
    };
    constructor(data: RawNode);
}
