import { SelectionOperator } from '../../../core/operators/SelectionOperator';
export declare class SelectionOperatorImpl<T> implements SelectionOperator<T> {
    select(population: T[], fitnesses: number[], numParents: number, tournamentSize?: number): T[];
}
