import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import OverlayTwoPanel from './OverlayTwoPanel.js';
export default class OverlaySection extends YTNode {
    static type: string;
    endpoint: NavigationEndpoint;
    overlay: OverlayTwoPanel | null;
    constructor(data: RawNode);
}
