import type { PhpArrayLike, PhpAssoc, PhpInput, PhpList } from '../_helpers/_phpTypes.ts'; type AssociativeArray = PhpAssoc; export declare function array_merge(...args: [first: PhpList, ...rest: Array>]): PhpList; export declare function array_merge(...args: [first: PhpArrayLike, ...rest: Array>]): AssociativeArray; export {};