import { type PhpArrayLike, type PhpNullish, type StringLike } from '../_helpers/_phpTypes.ts';
type SummableValue = StringLike | PhpNullish;
export declare function array_sum(array: PhpArrayLike<SummableValue> | null): number | null;
export {};
