import { S, A, OrderType } from '../typings'; declare let bubbleSort: (arr: A[], order?: OrderType) => any[]; declare let selectSort: (arr: A[], order?: OrderType) => any[]; declare let mergeSort: (arr: A[], order?: OrderType) => any; declare let insertSort: (arr: A[], order?: string) => any[]; declare let quickSort: (arr: A[], order?: string) => any; declare let versionOrder: (arr: S[]) => string[]; export { bubbleSort, selectSort, mergeSort, insertSort, quickSort, versionOrder, };