import { rule } from "./rule"; import { board } from "./board"; export declare namespace variant { /** * Variant of Diplomacy */ class Variant { rule: rule.Rule; initialBoard: board.Board; /** * @param rule The rule used in this variant. * @param initialBoard The initial state of the board used in this variant. */ constructor(rule: rule.Rule, initialBoard: board.Board); } }