/**
 * Remove an array element in O(1) time if element ndx is known.
 * Works only with unordered arrays.
 * @param array
 * @param ndx
 *
 * @category Collections
 */
export declare function swapPop<T>(array: T[], ndx: number): T | null;
