import { Rounds } from "./types"; /** * Genereates a Round Robin schedule. * @param array Array of teams or elements to schedule. * @param secondRound If true, it will generate a second round of the same matches generated, but with reversed home. It will be included in the returned array of rounds. * @returns An array with every created round. */ declare const roundrobin: (array: (T | null)[], secondRound?: boolean) => Rounds; export default roundrobin;