import { type PhpAssoc, type PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; interface MergeObject extends PhpAssoc { } type MergeValue = PhpRuntimeValue | MergeValue[] | MergeObject; export declare function array_merge_recursive(...arrays: MergeObject[]): MergeObject; export {};