export interface CrossoverOperator<T> {
    crossover(parent1: T, parent2: T): T[] | Promise<T[]>;
}
//# sourceMappingURL=CrossoverOperator.d.ts.map