import { YandexMusicClient } from "../client";
import { FeedInterface } from "../interfaces";
export declare class Feed {
    private readonly client;
    constructor(client: YandexMusicClient);
    /**
       * Getting a stream of information (feed) tailored to the user. Contains smart playlists.
       * @returns Smart user Playlists.
       */
    feed(): Promise<FeedInterface>;
    /**
       * @returns True or false
       */
    wizard(): Promise<{
        isWizardPassed: boolean;
    }>;
}
//# sourceMappingURL=index.d.ts.map