import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type SortValue = PhpRuntimeValue; type SortableObject = PhpAssoc; type SortArg = SortValue[] | SortableObject | SortFlag; declare const flags: Readonly<{ SORT_REGULAR: number; SORT_NUMERIC: number; SORT_STRING: number; SORT_ASC: number; SORT_DESC: number; }>; type SortFlag = keyof typeof flags; export declare function array_multisort(arr: SortValue[] | SortableObject, ...rest: SortArg[]): boolean; export {};