import type { rawMatch } from './types';
import type { MetaDataInfo } from './MetaData';
import type { Client } from './Client';
export declare class Match {
    id: string;
    channelName: string;
    matchType: MetaDataInfo;
    track: MetaDataInfo;
    startTime: Date;
    endTime: Date;
    matchResult: string;
    constructor(client: Client, data: rawMatch);
    get gameSpeed(): "무한" | "가장빠름" | "매우빠름" | "빠름" | "보통";
    get isTeam(): boolean;
    get isSpecialMode(): boolean;
    get playTime(): number;
}
