//#region src/internal/array/insert.d.ts type InsertType = 'insert' | 'push' | 'splice'; declare function insertValues(type: InsertType, array: unknown, items: unknown, start: unknown, deleteCount: number): unknown; declare const INSERT_TYPE_INSERT: InsertType; declare const INSERT_TYPE_PUSH: InsertType; declare const INSERT_TYPE_SPLICE: InsertType; //#endregion export { INSERT_TYPE_INSERT, INSERT_TYPE_PUSH, INSERT_TYPE_SPLICE, insertValues };