import { IDefaultParams, IError } from "../../types";
import { MatchesListResponse } from "../../types/v2/matches_list";
type Response = MatchesListResponse & IError;
export declare const matches_list: (params: {
    limit?: number;
    sort?: 'id_desc' | 'id_asc';
    /**
     * Use cursor.match_id
     */
    after_id: number;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
