import type { Actions, ApiResponse } from '../../core/index.js';
import type { ObservedArray, YTNode } from '../helpers.js';
export default class HomeFeed {
    #private;
    sections?: ObservedArray<YTNode>;
    constructor(response: ApiResponse, actions: Actions);
    /**
     * Retrieves home feed continuation.
     */
    getContinuation(): Promise<HomeFeed>;
    get has_continuation(): boolean;
}
