import type { PhpArrayLike, PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type InArrayValue = PhpRuntimeValue;
export declare function in_array<TNeedle extends InArrayValue>(needle: TNeedle, haystack: PhpArrayLike<TNeedle>, argStrict: true): boolean;
export declare function in_array(needle: InArrayValue, haystack: PhpArrayLike<InArrayValue>, argStrict?: boolean): boolean;
export {};
