import { OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
import { AdnRound, AdnTournament } from '../declarations/interfaces';
export declare class SingleEliminationTreeComponent implements OnInit, OnChanges {
    matchTemplate: TemplateRef<any>;
    tournament: AdnTournament;
    winnersBracket: AdnRound[];
    final: AdnRound;
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
}
