import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
export default class VideoBadgeView extends YTNode {
    static type: string;
    label: string;
    icon_name: string;
    may_truncate_text: boolean;
    constructor(data: RawNode);
}
