import type { Client } from './Client';
import type { rawUserMatchInfo } from './types';
import { Match } from './Match';
import { Player } from './Player';
export declare class MatchInfo extends Match {
player: Player;
constructor(client: Client, data: rawUserMatchInfo);
}