/**
 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md.
 */
/**
 * Clear whole array while keeping its reference.
 */
export declare function overwriteArray<A extends Array<any>>(source: A, destination: A): A;
