import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Thumbnail from './misc/Thumbnail.js';
import Text from './misc/Text.js';
export default class OverlayPanelHeader extends YTNode {
    static type: string;
    image: Thumbnail[];
    title: Text;
    subtitle: Text;
    style: string;
    constructor(data: RawNode);
}
