import type { PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type SortValue = PhpRuntimeValue; type SortFlag = 'SORT_REGULAR' | 'SORT_NUMERIC' | 'SORT_STRING' | 'SORT_LOCALE_STRING'; export declare function asort(inputArr: T[], sortFlags?: SortFlag): boolean | T[]; export declare function asort(inputArr: Record, sortFlags?: SortFlag): boolean | Record; export {};