import { type PhpAssoc, type PhpComparatorDescriptor } from '../_helpers/_phpTypes.ts';
type IntersectArray<T> = PhpAssoc<T> | T[];
export declare function array_uintersect<T>(arr1: PhpAssoc<T>, ...arraysAndCallback: [
    arr2: IntersectArray<T>,
    ...rest: Array<IntersectArray<T>>,
    callback: PhpComparatorDescriptor<T>
]): PhpAssoc<T>;
export {};
