import { IDefaultParams, IError } from "../../types";
import { NotificationsListResponse } from "../../types/v2/notifications_list";
type Response = NotificationsListResponse & IError;
export declare const notifications_list: (params: {
    max_id: string;
    unread_only: boolean;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
