import { YandexMusicClient } from "../../client";
import { List } from "../../interfaces";
import { Tracks } from "./tracks";
export declare class DisLikes {
    readonly client: YandexMusicClient;
    readonly tracks: Tracks;
    constructor(client: YandexMusicClient);
    /**
     * Actions marked "Do not recommend".
     * @param {List} ids
     * @param {boolean} remove If True, then removes the mark, otherwise puts.
     * @param {number} user_id Unique user ID.
     * @returns OK if the request is successful.
     */
    action(ids: List, remove?: boolean, user_id?: number): Promise<string>;
}
//# sourceMappingURL=index.d.ts.map