import { ArrayLike, ArrayValue } from './types'; /** * Copies an array from the specified source array, beginning at the specified position, to the specified position of * the destination array. * * @param src The source array. * @param dest The destination array. * @param srcIndex The start position in the source array. * @param destIndex The start position in the destination array. * @param n The number of elements to copy. * @returns The destination array. * @template T The destination array. * @group Arrays */ export declare function copyOver>(src: ArrayLike>, dest: T, srcIndex?: number, destIndex?: number, n?: number): T;