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