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