import Match from "./match";
export default class Gameday<T> {
    leftJoker?: Match<T> | undefined;
    rightJoker?: Match<T> | undefined;
    buckets: Match<T>[];
    constructor(leftJoker?: Match<T> | undefined, rightJoker?: Match<T> | undefined, buckets?: Match<T>[]);
}
