import { Spot } from '../internal-types';
/**
 * First sorts by top, and then if top is the same
 * the one with the smallest left will win
 */
export declare const sortByTopFirstLeftSecond: (list: Spot[]) => any[];
