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 PreviewButton extends YTNode {
    static type: string;
    title: Text;
    subtitle: Text;
    thumbnail: Thumbnail[];
    byline: Text;
    constructor(data: RawNode);
}
