import { IDefaultParams, IError } from "../../types";
import { MatchesDetailsResponse } from "../../types/v2/matches_detaIls";
type Response = MatchesDetailsResponse & IError;
export declare const matches_details: (params: {
    match_id: number;
    before?: number;
    after?: number;
    limit?: number;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
