/** * Determines if a tick list is sorted * @param list The tick list * @param comparator The comparator * @returns true if sorted */ export declare function isSorted(list: Array, comparator: (a: T, b: T) => number): boolean;