import { type PhpArrayLike, type PhpAssoc, type PhpKey, type StringLike } from '../_helpers/_phpTypes.ts';
export declare function array_fill_keys<TKey extends PhpKey | StringLike, TValue>(keys: PhpArrayLike<TKey>, value: TValue): PhpAssoc<TValue>;
