export declare const TieBreakerOperator: ({ currentSolution, neighbor, currentCost, neighborCost, maximizeCost, children }: {
    currentSolution: any;
    neighbor: any;
    currentCost: number;
    neighborCost: number;
    maximizeCost?: boolean;
    children: (isCostImprovement: boolean) => any;
}) => any;
