import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type SpliceValue = PhpRuntimeValue; type AssocArray = PhpAssoc; type ReplacementValue = Array | AssocArray | T; export declare function array_splice(arr: Array, offst: number, lgth?: number, replacement?: ReplacementValue): Array; export declare function array_splice(arr: AssocArray, offst: number, lgth?: number, replacement?: ReplacementValue): Array | AssocArray; export {};