export default function bubbleSort<T = number>(value: Array<T>, ascending?: boolean): Array<T>;
