import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type SearchValue = PhpRuntimeValue; export declare function array_search(needle: TValue | RegExp, haystack: PhpAssoc, argStrict: true): string | false; export declare function array_search(needle: SearchValue | RegExp, haystack: PhpAssoc, argStrict?: boolean): string | false; export {};