import { type PhpAssoc, type PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type ReverseValue = PhpRuntimeValue; export declare function array_reverse(array: TValue[], preserveKeys?: false | undefined): TValue[]; export declare function array_reverse(array: TValue[], preserveKeys: true): PhpAssoc; export declare function array_reverse(array: PhpAssoc, preserveKeys?: false | undefined): PhpAssoc | TValue[]; export declare function array_reverse(array: PhpAssoc, preserveKeys: true): PhpAssoc; export {};