/**
 * https://simple-statistics.github.io/docs/#permutationsheap
 */
declare function permutationsHeap<T extends any[]>(elements: T): T[];

export default permutationsHeap;
