import { IDefaultParams, IError } from "../../types";
import { NewsListResponse } from "../../types/v2/news_list";
type Response = NewsListResponse & IError;
export declare const news_list: (params?: {
    from_year?: string;
    limit?: string;
    cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
