import { type RawNode } from '../index.js';
import { YTNode } from '../helpers.js';
export default class ThumbnailOverlayIcon extends YTNode {
    static type: string;
    icon: {
        icon_type: string;
    };
    icon_position: string;
    icon_color: string;
    constructor(data: RawNode);
}
