import { mInt32 } from "../Raw"; declare type T = mInt32; declare type CompareFunc = (a: T, b: T) => mInt32; export declare function quickselect(arr: T[], compare: CompareFunc, k: mInt32, left?: mInt32, right?: mInt32): void; export {};