import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import PreviewButton from './PreviewButton.js';
export default class MaybeHistoryEndpoint extends YTNode {
    static type: string;
    use_prev_history_item?: boolean;
    endpoint?: NavigationEndpoint;
    use_next_history_item?: boolean;
    item?: PreviewButton | null;
    constructor(data: RawNode);
}
