import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import VideoOwner from './VideoOwner.js';
export default class VideoDescriptionChannelSection extends YTNode {
    static type: string;
    channel: VideoOwner | null;
    constructor(data: RawNode);
}
